All Packages Class Hierarchy This Package Previous Next Index
Class iaik.utils.InternalErrorException
java.lang.Object
|
+----java.lang.Throwable
|
+----java.lang.Exception
|
+----java.lang.RuntimeException
|
+----iaik.utils.InternalErrorException
- public class InternalErrorException
- extends RuntimeException
This exception is thrown, if there occurs an internal error caused by an
development error and not by an user of the application.
-
InternalErrorException()
- Construct a new internal error exception.
-
InternalErrorException(Exception)
- Constructs an InternalErrorException with the exception
which causes this exception.
-
InternalErrorException(String)
- Constructs an InternalErrorException with a specified detail message.
-
InternalErrorException(String, Exception)
- Constructs an InternalErrorException with a specified detail message and
the exception which causes this exception.
-
getException()
- Returns the exception which causes this InternalErrorException.
InternalErrorException
public InternalErrorException()
- Construct a new internal error exception.
InternalErrorException
public InternalErrorException(Exception ex)
- Constructs an InternalErrorException with the exception
which causes this exception.
InternalErrorException
public InternalErrorException(String msg)
- Constructs an InternalErrorException with a specified detail message.
- Parameters:
- msg - the detail message.
InternalErrorException
public InternalErrorException(String msg,
Exception ex)
- Constructs an InternalErrorException with a specified detail message and
the exception which causes this exception.
- Parameters:
- msg - the detail message.
getException
public Exception getException()
- Returns the exception which causes this InternalErrorException.
- Returns:
- the exception, which causes this exception.
All Packages Class Hierarchy This Package Previous Next Index