net.pleso.framework.client.bl.exceptions
Class FrameworkRuntimeException

java.lang.Object
  extended by java.lang.Throwable
      extended by java.lang.Exception
          extended by java.lang.RuntimeException
              extended by net.pleso.framework.client.bl.exceptions.FrameworkRuntimeException
All Implemented Interfaces:
java.io.Serializable
Direct Known Subclasses:
AccessViolationException, AsyncCallbackFailureException, NotImplementedFeatureException

public class FrameworkRuntimeException
extends java.lang.RuntimeException

Represents base framework runtime exception. All framework exceptions extend this class. This helps outside unrecognized exception handler to recognize framework exceptions.

See Also:
Serialized Form

Constructor Summary
FrameworkRuntimeException()
          Constructs a new framework runtime exception with null as its detail message.
FrameworkRuntimeException(java.lang.String message)
          Constructs a new framework runtime exception with the specified detail message and cause.
FrameworkRuntimeException(java.lang.String message, java.lang.Throwable cause)
          Constructs a new framework runtime exception with the specified detail message.
FrameworkRuntimeException(java.lang.Throwable cause)
          Constructs a new runtime exception with the specified cause and a detail message of (cause==null ?
 
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

FrameworkRuntimeException

public FrameworkRuntimeException()
Constructs a new framework runtime exception with null as its detail message.


FrameworkRuntimeException

public FrameworkRuntimeException(java.lang.String message,
                                 java.lang.Throwable cause)
Constructs a new framework runtime exception with the specified detail message.

Parameters:
message - the detail message
cause - the cause

FrameworkRuntimeException

public FrameworkRuntimeException(java.lang.String message)
Constructs a new framework runtime exception with the specified detail message and cause.

Parameters:
message - the detail message

FrameworkRuntimeException

public FrameworkRuntimeException(java.lang.Throwable cause)
Constructs a new runtime exception with the specified cause and a detail message of (cause==null ? null : cause.toString()) (which typically contains the class and detail message of cause).

Parameters:
cause - the cause


Copyright © 2006-2007 pleso.net crew All Rights Reserved.