cz.cuni.jagrlib
Class JaGrLibException

java.lang.Object
  extended by java.lang.Throwable
      extended by java.lang.Exception
          extended by java.lang.RuntimeException
              extended by cz.cuni.jagrlib.JaGrLibException
All Implemented Interfaces:
java.io.Serializable

public class JaGrLibException
extends java.lang.RuntimeException

Generic JaGrLib throwable exception: unchecked exception (holding general Throwable). Should be throwed by throw new JaGrLibException( new Throwable(..) )

Since:
0.01
See Also:
JaGrLibException.java, Serialized Form

Constructor Summary
JaGrLibException(java.lang.String msg)
          Constructs an JaGrLibException with the specified detail message.
JaGrLibException(java.lang.String msg, java.lang.Throwable cause)
          Constructs an JaGrLibException with the specified detail message and explicit "cause".
JaGrLibException(java.lang.Throwable cause)
          Constructs an JaGrLibException with no detail message.
 
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
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Constructor Detail

JaGrLibException

public JaGrLibException(java.lang.Throwable cause)
Constructs an JaGrLibException with no detail message.


JaGrLibException

public JaGrLibException(java.lang.String msg,
                        java.lang.Throwable cause)
Constructs an JaGrLibException with the specified detail message and explicit "cause". A detail message is a String that describes* this particular exception.

Parameters:
msg - The detail message.
cause - Cause to be encapsulated into this exception.

JaGrLibException

public JaGrLibException(java.lang.String msg)
Constructs an JaGrLibException with the specified detail message. A detail message is a String that describes this particular exception.

Parameters:
msg - The detail message.