org.n52.oxf
Class OXFRuntimeException

java.lang.Object
  extended by java.lang.Throwable
      extended by java.lang.Exception
          extended by java.lang.RuntimeException
              extended by org.n52.oxf.OXFRuntimeException
All Implemented Interfaces:
Serializable

public class OXFRuntimeException
extends RuntimeException

OXFRuntimeException can be thrown during the normal operation of the Java Virtual Machine.
A method is not required to declare in its throws clause any subclasses of OXFRuntimeException that might be thrown during the execution of the method but not caught.

Author:
Arne Broering
See Also:
Serialized Form

Constructor Summary
OXFRuntimeException()
          Constructs a new OXFRuntimeException.
OXFRuntimeException(String reason)
          Constructs a new OXFRuntimeException with the specified reason.
OXFRuntimeException(String reason, Throwable cause)
          Constructs a new OXFRuntimeException with the specified reason and cause.
OXFRuntimeException(Throwable cause)
          Constructs a new OXFRuntimeException with the specified 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

OXFRuntimeException

public OXFRuntimeException()
Constructs a new OXFRuntimeException.


OXFRuntimeException

public OXFRuntimeException(String reason)
Constructs a new OXFRuntimeException with the specified reason.

Parameters:
reason - the reason of the exception.

OXFRuntimeException

public OXFRuntimeException(Throwable cause)
Constructs a new OXFRuntimeException with the specified cause.

Parameters:
cause - the cause which is saved for later retrieval by the Throwable.getCause() method. A null value is permitted, and indicates that the cause is nonexistent or unknown.

OXFRuntimeException

public OXFRuntimeException(String reason,
                           Throwable cause)
Constructs a new OXFRuntimeException with the specified reason and cause.

Parameters:
reason - the reason of the exception.
cause - the cause which is saved for later retrieval by the Throwable.getCause() method. A null value is permitted, and indicates that the cause is nonexistent or unknown.


Copyright © 2012-2013 52north.org. All Rights Reserved.