|
|||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Object java.lang.Throwable java.lang.Exception org.sourceforge.ifx.utils.IFXException
Thin wrapper over real Exceptions thrown by the framework. Allows throwing application level exceptions which may not be caught by the JVM because they are not JVM exceptions.
Constructor Summary | |
IFXException(java.lang.String message)
Creates an IFXException object using the error message. |
|
IFXException(java.lang.String message,
java.lang.Exception e)
Creates an IFXException object using the error message and a chained exception. |
|
IFXException(java.lang.String message,
java.lang.String[] args)
Creates an IFXException object using the error message and replaceable positional parameters. |
|
IFXException(java.lang.String message,
java.lang.String[] args,
java.lang.Exception e)
Creates an IFXException object using the error message, replaceable positional parameters and a chained exception. |
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 IFXException(java.lang.String message)
message
- the Exception message.public IFXException(java.lang.String message, java.lang.String[] args)
message
- the Exception message with positional parameters.args
- an array of positional parameter String values.public IFXException(java.lang.String message, java.lang.Exception e)
message
- the Exception message.e
- the underlying chained exception.public IFXException(java.lang.String message, java.lang.String[] args, java.lang.Exception e)
message
- the Exception message with positional parameters.args
- an array of positional parameter String values.e
- the underlying chained exception.
|
|||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |