Class TranscoderException

java.lang.Object
java.lang.Throwable
java.lang.Exception
io.sf.carte.echosvg.transcoder.TranscoderException
All Implemented Interfaces:
Serializable

public class TranscoderException extends Exception
Thrown when a transcoder is not able to transcode its input.
See Also:
  • Field Details

    • ex

      protected Exception ex
      The enclosed exception.
  • Constructor Details

    • TranscoderException

      public TranscoderException(String s)
      Constructs a new transcoder exception with the specified detail message.
      Parameters:
      s - the detail message of this exception
    • TranscoderException

      public TranscoderException(Exception ex)
      Constructs a new transcoder exception with the specified detail message.
      Parameters:
      ex - the enclosed exception
    • TranscoderException

      public TranscoderException(String s, Exception ex)
      Constructs a new transcoder exception with the specified detail message.
      Parameters:
      s - the detail message of this exception
      ex - the original exception
  • Method Details

    • getMessage

      public String 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 class Throwable
    • getException

      public Exception getException()
      Returns the original enclosed exception or null if any.