org.jtgl.core
Class JTGLException

java.lang.Object
  extended by java.lang.Throwable
      extended by java.lang.Exception
          extended by org.jtgl.core.JTGLException
All Implemented Interfaces:
java.io.Serializable
Direct Known Subclasses:
JTGLExtensionException, MediaException

public class JTGLException
extends java.lang.Exception

JTGL core Exception class

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

Constructor Summary
JTGLException()
          Creates a new instance of JTGLException without detail message.
JTGLException(java.lang.String msg)
          Constructs an instance of JTGLException with the specified detail message.
JTGLException(java.lang.Throwable exception)
          Constructs an instance of JTGLException wrapping a Throwable object instance.
 
Method Summary
 java.lang.Throwable 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

JTGLException

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


JTGLException

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

Parameters:
msg - the detail message.

JTGLException

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

Parameters:
exception - the Throwable object instance.
Method Detail

getException

public java.lang.Throwable getException()