Package io.sf.carte.echosvg.transcoder
Class TranscoderException
java.lang.Object
java.lang.Throwable
java.lang.Exception
io.sf.carte.echosvg.transcoder.TranscoderException
- All Implemented Interfaces:
Serializable
Thrown when a transcoder is not able to transcode its input.
- See Also:
-
Field Summary
Fields -
Constructor Summary
ConstructorsConstructorDescriptionConstructs a new transcoder exception with the specified detail message.Constructs a new transcoder exception with the specified detail message.TranscoderException
(String s, Exception ex) Constructs a new transcoder exception with the specified detail message. -
Method Summary
Modifier and TypeMethodDescriptionReturns the original enclosed exception or null if any.Returns the message of this exception.Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
Field Details
-
ex
The enclosed exception.
-
-
Constructor Details
-
TranscoderException
Constructs a new transcoder exception with the specified detail message.- Parameters:
s
- the detail message of this exception
-
TranscoderException
Constructs a new transcoder exception with the specified detail message.- Parameters:
ex
- the enclosed exception
-
TranscoderException
Constructs a new transcoder exception with the specified detail message.- Parameters:
s
- the detail message of this exceptionex
- the original exception
-
-
Method Details
-
getMessage
Returns the message of this exception. If an error message has been specified, returns that one. Otherwise, return the error message of enclosed exception or null if any.- Overrides:
getMessage
in classThrowable
-
getException
Returns the original enclosed exception or null if any.
-