All Packages  Class Hierarchy  This Package  Previous  Next  Index

Class PREDATOR.InternalError

java.lang.Object
   |
   +----java.lang.Throwable
           |
           +----java.lang.Error
                   |
                   +----PREDATOR.InternalError

public class InternalError
extends Error
The error thrown when an internal error arises in the PREDATOR and PREDATOR.ADT packages. This error always signifies a bug, and should never be caught. If this error is thrown in your application, please contact PREDATOR support.


Constructor Index

 o InternalError(Exception)
Constructs an InternalError from a caught exception.
 o InternalError(String)
Constructs an InternalError with a detail message.

Method Index

 o printStackTrace()
Prints the stack trace of this internal error on the error stream.
 o printStackTrace(PrintStream)
Prints the stack trace of this internal error on the supplied PrintStream.

Constructors

 o InternalError
 public InternalError(String Reason)
Constructs an InternalError with a detail message.

 o InternalError
 public InternalError(Exception X)
Constructs an InternalError from a caught exception.

Methods

 o printStackTrace
 public void printStackTrace(PrintStream s)
Prints the stack trace of this internal error on the supplied PrintStream.

Overrides:
printStackTrace in class Throwable
 o printStackTrace
 public void printStackTrace()
Prints the stack trace of this internal error on the error stream.

Overrides:
printStackTrace in class Throwable

All Packages  Class Hierarchy  This Package  Previous  Next  Index