com.bankframe
Class ExtensionRuntimeError

java.lang.Object
  extended by java.lang.Throwable
      extended by java.lang.Error
          extended by com.bankframe.ExtensionRuntimeError
All Implemented Interfaces:
Serializable

public class ExtensionRuntimeError
extends Error

The ExtensionRuntimeError class. This class is an error and is used to throw runtime exceptions. A method is not required to declare it in its throws clause, since these errors are abnormal conditions that should never occur.

See Also:
Serialized Form

Constructor Summary
ExtensionRuntimeError(int errorNumber)
          This method creates a ExtensionRuntimeError with specific error number
ExtensionRuntimeError(int errorNumber, String[] params)
          This method creates a ExtensionRuntimeError with specific error number and message parameters
 
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
equals, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Constructor Detail

ExtensionRuntimeError

public ExtensionRuntimeError(int errorNumber)
This method creates a ExtensionRuntimeError with specific error number

Parameters:
errorNumber - the error code for this exception

ExtensionRuntimeError

public ExtensionRuntimeError(int errorNumber,
                             String[] params)
This method creates a ExtensionRuntimeError with specific error number and message parameters

Parameters:
errorNumber - the error code for this exception
params - the messages


Copyright © 2005, 2007, Oracle. All rights reserved.