iaik.utils
Class InternalErrorException
java.lang.Object
|
+--java.lang.Throwable
|
+--java.lang.Exception
|
+--java.lang.RuntimeException
|
+--iaik.utils.InternalErrorException
- public class InternalErrorException
- extends java.lang.RuntimeException
This exception is thrown, if there occurs an internal error caused by some
development error and not by an user of the application.
- See Also:
- Serialized Form
|
Constructor Summary |
InternalErrorException()
Constructs a new internal error exception. |
InternalErrorException(java.lang.Exception ex)
Constructs an InternalErrorException with the exception
which causes this exception. |
InternalErrorException(java.lang.String msg)
Constructs an InternalErrorException with a specified detail message. |
InternalErrorException(java.lang.String msg,
java.lang.Exception ex)
Constructs an InternalErrorException with a specified detail message and
the exception which causes this exception. |
|
Method Summary |
java.lang.Exception |
getException()
Returns the exception which causes this InternalErrorException. |
| Methods inherited from class java.lang.Throwable |
fillInStackTrace,
getLocalizedMessage,
getMessage,
printStackTrace,
printStackTrace,
printStackTrace,
toString |
| Methods inherited from class java.lang.Object |
clone,
equals,
finalize,
getClass,
hashCode,
notify,
notifyAll,
wait,
wait,
wait |
InternalErrorException
public InternalErrorException()
- Constructs a new internal error exception.
InternalErrorException
public InternalErrorException(java.lang.Exception ex)
- Constructs an InternalErrorException with the exception
which causes this exception.
- Parameters:
ex - the exception causing this exception
InternalErrorException
public InternalErrorException(java.lang.String msg)
- Constructs an InternalErrorException with a specified detail message.
- Parameters:
msg - the detail message.
InternalErrorException
public InternalErrorException(java.lang.String msg,
java.lang.Exception ex)
- Constructs an InternalErrorException with a specified detail message and
the exception which causes this exception.
- Parameters:
msg - the detail messageex - the exception causing this exception
getException
public java.lang.Exception getException()
- Returns the exception which causes this InternalErrorException.
- Returns:
- the exception, which causes this exception