com.fatwire.agent
Class RuntimeException

java.lang.Object
  extended by java.lang.Throwable
      extended by java.lang.Exception
          extended by com.fatwire.agent.AgentException
              extended by com.fatwire.agent.RuntimeException
All Implemented Interfaces:
java.io.Serializable

public class RuntimeException
extends AgentException

Denotes an exception which occured in the Agent runtime system. This exception should be used only if an unrecoverable error happens or if an error could not be classified as any other exception.

See Also:
Serialized Form

Constructor Summary
RuntimeException()
           
RuntimeException(java.lang.String message)
           
RuntimeException(java.lang.String message, java.lang.Throwable cause)
           
RuntimeException(java.lang.Throwable cause)
           
 
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

RuntimeException

public RuntimeException()
See Also:
Exception.Exception()

RuntimeException

public RuntimeException(java.lang.String message,
                        java.lang.Throwable cause)
Parameters:
message - error reason.
See Also:
Exception.Exception(java.lang.String, java.lang.Throwable)

RuntimeException

public RuntimeException(java.lang.String message)
Parameters:
message - error reason.
See Also:
Exception.Exception(java.lang.String)

RuntimeException

public RuntimeException(java.lang.Throwable cause)
See Also:
Exception.Exception(java.lang.Throwable)