org.jtgl.ext.media
Class MediaException

java.lang.Object
  extended by java.lang.Throwable
      extended by java.lang.Exception
          extended by org.jtgl.core.JTGLException
              extended by org.jtgl.ext.media.MediaException
All Implemented Interfaces:
java.io.Serializable

public class MediaException
extends JTGLException

Encapsulates any media exception

Author:
Manuel Polo (manuel_polo at yahoo dot es)
See Also:
Serialized Form

Constructor Summary
MediaException()
          Creates a new instance of MediaException without detail message.
MediaException(java.lang.String msg)
          Constructs an instance of MediaException with the specified detail message.
MediaException(java.lang.Throwable exception)
          Constructs an instance of MediaException wrapping a Throwable object instance.
 
Method Summary
 
Methods inherited from class org.jtgl.core.JTGLException
getException
 
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
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Constructor Detail

MediaException

public MediaException()
Creates a new instance of MediaException without detail message.


MediaException

public MediaException(java.lang.String msg)
Constructs an instance of MediaException with the specified detail message.

Parameters:
msg - the detail message.

MediaException

public MediaException(java.lang.Throwable exception)
Constructs an instance of MediaException wrapping a Throwable object instance.

Parameters:
exception - the Throwable object instance.