Package com.scroogexhtml.converter
Class ConversionException
java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
com.scroogexhtml.converter.ConversionException
- All Implemented Interfaces:
Serializable
The ConversionException class encapsulates fatal conversion errors.
- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionConversionException
(String message) Constructs a new ConversionException with the specified message.ConversionException
(String message, Object... args) Constructs a new ConversionException with the specified message.ConversionException
(Throwable cause) -
Method Summary
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
Constructor Details
-
ConversionException
- Parameters:
cause
- of the exception
-
ConversionException
Constructs a new ConversionException with the specified message.- Parameters:
message
- the detail message.- Throws:
NullPointerException
- ifmessage
is null.
-
ConversionException
Constructs a new ConversionException with the specified message.- Parameters:
message
- the detail message, which should provide information about the conversion error.args
- optional arguments to be formatted into the detail message using the format specifier.
-