org.objectweb.jonathan.binding.api
Class ExportException

java.lang.Object
  extended by java.lang.Throwable
      extended by java.lang.Exception
          extended by org.objectweb.jonathan.apis.kernel.JonathanException
              extended by org.objectweb.jonathan.binding.api.ExportException
All Implemented Interfaces:
Serializable

public class ExportException
extends org.objectweb.jonathan.apis.kernel.JonathanException

ExportException is a checked exception that an interface could not be exported for some reason.

See Also:
Serialized Form

Constructor Summary
ExportException()
          Constructs a new ExportException with no detail message.
ExportException(Exception exception)
          Builds a ExportException that wraps another exception.
ExportException(String s)
          Builds an ExportException with a detail message.
 
Method Summary
 
Methods inherited from class org.objectweb.jonathan.apis.kernel.JonathanException
getMessage, printStackTrace, printStackTrace, printStackTrace, represents, toString
 
Methods inherited from class java.lang.Throwable
fillInStackTrace, getCause, getLocalizedMessage, getStackTrace, initCause, setStackTrace
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Constructor Detail

ExportException

public ExportException()
Constructs a new ExportException with no detail message.


ExportException

public ExportException(String s)
Builds an ExportException with a detail message.


ExportException

public ExportException(Exception exception)
Builds a ExportException that wraps another exception.