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 Link icon

    • ex Link icon

      protected Exception ex
      The enclosed exception.
  • Constructor Details Link icon

    • TranscoderException Link icon

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

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

      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 Link icon

    • getMessage Link icon

      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 Link icon

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