Package com.aurumsmods.littlebigio
Class BOMException
java.lang.Object
java.lang.Throwable
java.lang.Exception
java.io.IOException
com.aurumsmods.littlebigio.BOMException
- All Implemented Interfaces:
Serializable
Thrown to indicate that an incorrect byte order mark, or BOM for short, has
been detected.
- See Also:
-
Constructor Summary
ConstructorDescriptionConstructs aBOMException
withnull
as its error detail message.Constructs aBOMException
with the specified detail message. -
Method Summary
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
Constructor Details
-
BOMException
public BOMException()Constructs aBOMException
withnull
as its error detail message. -
BOMException
Constructs aBOMException
with the specified detail message. The strings
can be retrieved later by theThrowable.getMessage()
method of classjava.lang.Throwable
.- Parameters:
s
- the detail message.
-