org.alembik
Class TranscodingException

java.lang.Object
  extended by java.lang.Throwable
      extended by java.lang.Exception
          extended by org.alembik.TranscodingException
All Implemented Interfaces:
java.io.Serializable

public class TranscodingException
extends java.lang.Exception

The generic exception class indicating a severe transcoding error.

Since:
1.0-beta1
See Also:
Serialized Form

Constructor Summary
TranscodingException()
          Constructs a new exception with null as its detail message.
TranscodingException(java.lang.String msg)
          Constructs a new exception with the specified detail message.
TranscodingException(java.lang.String msg, java.lang.Throwable thr)
          Constructs a new exception with the specified detail message and cause.
TranscodingException(java.lang.Throwable thr)
          Constructs a new exception with the specified cause and a detail message of (thr==null ?
 
Method Summary
 
Methods inherited from class java.lang.Throwable
fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
 
Methods inherited from class java.lang.Object
equals, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Constructor Detail

TranscodingException

public TranscodingException()
Constructs a new exception with null as its detail message.


TranscodingException

public TranscodingException(java.lang.String msg)
Constructs a new exception with the specified detail message.

Parameters:
msg - detail message

TranscodingException

public TranscodingException(java.lang.Throwable thr)
Constructs a new exception with the specified cause and a detail message of (thr==null ? null : thr.toString()) (which typically contains the class and detail message of thr).

Parameters:
thr - exception cause

TranscodingException

public TranscodingException(java.lang.String msg,
                            java.lang.Throwable thr)
Constructs a new exception with the specified detail message and cause. Note that the detail message associated with thr is not automatically incorporated in this exception's detail message.

Parameters:
msg - detail message
thr - exception cause