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 SummaryFields
- 
Constructor SummaryConstructorsConstructorDescriptionConstructs 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 SummaryModifier and TypeMethodDescriptionReturns the original enclosed exception or null if any.Returns the message of this exception.Methods inherited from class java.lang.ThrowableaddSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
- 
Field Details- 
exThe enclosed exception.
 
- 
- 
Constructor Details- 
TranscoderExceptionConstructs a new transcoder exception with the specified detail message.- Parameters:
- s- the detail message of this exception
 
- 
TranscoderExceptionConstructs a new transcoder exception with the specified detail message.- Parameters:
- ex- the enclosed exception
 
- 
TranscoderExceptionConstructs a new transcoder exception with the specified detail message.- Parameters:
- s- the detail message of this exception
- ex- the original exception
 
 
- 
- 
Method Details- 
getMessageReturns 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:
- getMessagein class- Throwable
 
- 
getExceptionReturns the original enclosed exception or null if any.
 
-