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.


Constructor Index

 o InternalErrorException()
Construct a new internal error exception.
 o InternalErrorException(Exception)
Constructs an InternalErrorException with the exception which causes this exception.
 o InternalErrorException(String)
Constructs an InternalErrorException with a specified detail message.
 o InternalErrorException(String, Exception)
Constructs an InternalErrorException with a specified detail message and the exception which causes this exception.

Method Index

 o getException()
Returns the exception which causes this InternalErrorException.

Constructors

 o InternalErrorException
 public InternalErrorException()
Construct a new internal error exception.

 o InternalErrorException
 public InternalErrorException(Exception ex)
Constructs an InternalErrorException with the exception which causes this exception.

 o InternalErrorException
 public InternalErrorException(String msg)
Constructs an InternalErrorException with a specified detail message.

Parameters:
msg - the detail message.
 o 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.

Methods

 o 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