|
||||||||||
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.SynthesisException
public class SynthesisException
Class SynthesisException encapsulates an exception thrown when M2MI is unable to synthesize or instantiate a handle class or a method invoker class. The SynthesisException's detail message and/or chained exception provide further information.
Class SynthesisException is an unchecked RuntimeException because it indicates an unrecoverable error condition, not a normal event that needs to be caught and handled.
Constructor Summary | |
---|---|
SynthesisException()
Construct a new synthesis exception with no detail message and no chained exception. |
|
SynthesisException(String msg)
Construct a new synthesis exception with the given detail message and no chained exception. |
|
SynthesisException(String msg,
Throwable exc)
Construct a new synthesis exception with the given detail message and the given chained exception. |
|
SynthesisException(Throwable exc)
Construct a new synthesis 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 SynthesisException()
public SynthesisException(String msg)
msg
- Detail message.public SynthesisException(Throwable exc)
exc
- Chained exception.public SynthesisException(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 |