|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Objectjava.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
edu.rit.m2mi.M2MIRuntimeException
edu.rit.m2mi.ExportException
public class ExportException
Class ExportException encapsulates an exception thrown when M2MI is unable to export or unexport an object. The ExportException's detail message and/or chained exception provide further information.
Class ExportException is an unchecked RuntimeException because it indicates an unrecoverable error condition (typically, that the M2MP Layer is not working), not a normal event that needs to be caught and handled.
Constructor Summary | |
---|---|
ExportException()
Construct a new export exception with no detail message and no chained exception. |
|
ExportException(String msg)
Construct a new export exception with the given detail message and no chained exception. |
|
ExportException(String msg,
Throwable exc)
Construct a new export exception with the given detail message and the given chained exception. |
|
ExportException(Throwable exc)
Construct a new export exception with no detail message and the given chained exception. |
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 |
---|
public ExportException()
public ExportException(String msg)
msg
- Detail message.public ExportException(Throwable exc)
exc
- Chained exception.public ExportException(String msg, Throwable exc)
msg
- Detail message.exc
- Chained exception.
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |