org.objectweb.jonas_lib.genbase
Class GenBaseException

java.lang.Object
  extended by java.lang.Throwable
      extended by java.lang.Exception
          extended by org.objectweb.jonas_lib.genbase.GenBaseException
All Implemented Interfaces:
java.io.Serializable
Direct Known Subclasses:
ClientStubGenException, WsGenException

public class GenBaseException
extends java.lang.Exception

This class represents the exception that can be throwned by the ClientStubGen tool.

Author:
Guillaume Sauthier
See Also:
Serialized Form

Constructor Summary
GenBaseException()
          Constructs a GenBaseException with no specified detail message.
GenBaseException(java.lang.Exception inner)
          Constructs an GenBaseException with the specified detail message.
GenBaseException(java.lang.String msg)
          Constructs an GenBaseException with the specified detail message.
GenBaseException(java.lang.String msg, java.lang.Exception inner)
          Constructs an GenBaseException with the specified 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

GenBaseException

public GenBaseException()
Constructs a GenBaseException with no specified detail message.


GenBaseException

public GenBaseException(java.lang.String msg)
Constructs an GenBaseException with the specified detail message.

Parameters:
msg - Error message

GenBaseException

public GenBaseException(java.lang.Exception inner)
Constructs an GenBaseException with the specified detail message.

Parameters:
inner - Cause Exception to wrap

GenBaseException

public GenBaseException(java.lang.String msg,
                        java.lang.Exception inner)
Constructs an GenBaseException with the specified detail message.

Parameters:
msg - Error message
inner - Cause Exception to wrap