Class TranscoderException

  • All Implemented Interfaces:
    java.io.Serializable

    public class TranscoderException
    extends java.lang.Exception
    Thrown when a transcoder is not able to transcode its input.
    See Also:
    Serialized Form
    • Field Summary

      Fields 
      Modifier and Type Field Description
      protected java.lang.Exception ex
      The enclosed exception.
    • Constructor Summary

      Constructors 
      Constructor Description
      TranscoderException​(java.lang.Exception ex)
      Constructs a new transcoder exception with the specified detail message.
      TranscoderException​(java.lang.String s)
      Constructs a new transcoder exception with the specified detail message.
      TranscoderException​(java.lang.String s, java.lang.Exception ex)
      Constructs a new transcoder exception with the specified detail message.
    • Method Summary

      All Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      java.lang.Exception getException()
      Returns the original enclosed exception or null if any.
      java.lang.String getMessage()
      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
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
    • Field Detail

      • ex

        protected java.lang.Exception ex
        The enclosed exception.
    • Constructor Detail

      • TranscoderException

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

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

        public TranscoderException​(java.lang.String s,
                                   java.lang.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 Detail

      • getMessage

        public java.lang.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 java.lang.Throwable
      • getException

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