org.jtool.jxplatform.repository
Class JxException

java.lang.Object
  extended byjava.lang.Throwable
      extended byjava.lang.Exception
          extended byorg.jtool.jxplatform.repository.JxException
All Implemented Interfaces:
java.io.Serializable

public class JxException
extends java.lang.Exception

An object that encapsulates a fatal error.

Author:
Katsuhisa Maruyama
See Also:
Serialized Form

Constructor Summary
JxException()
          Creates a new exception with null as its detail message.
JxException(java.lang.Exception e)
          Creates a new exception with null as its detail message.
JxException(java.lang.String msg)
          Creates a new exception with the specified detail message.
 
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

JxException

public JxException()
Creates a new exception with null as its detail message.


JxException

public JxException(java.lang.Exception e)
Creates a new exception with null as its detail message.

Parameters:
e - An exception to be wrapped this exception.

JxException

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

Parameters:
msg - A detail message.