Exceptions
Class UnexpectedError

java.lang.Object
  extended by java.lang.Throwable
      extended by java.lang.Error
          extended by Exceptions.UnexpectedError
All Implemented Interfaces:
java.io.Serializable

public class UnexpectedError
extends java.lang.Error

Represnts an error that should never occur. Used when someone else's code (normally Java) throws an error but you know the condition that caused the error should never occur.

Version:
1.0
See Also:
Serialized Form

Constructor Summary
UnexpectedError(java.lang.Throwable cause)
          Default constructor
 
Method Summary
 
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

UnexpectedError

public UnexpectedError(java.lang.Throwable cause)
Default constructor

Parameters:
cause - The Throwable that caused the problem