org.n52.oxf
Class OXFException

java.lang.Object
  extended by java.lang.Throwable
      extended by java.lang.Exception
          extended by org.n52.oxf.OXFException
All Implemented Interfaces:
Serializable
Direct Known Subclasses:
OXFThrowableCollection

public class OXFException
extends Exception

This is the standard Exception which will be thrown, if an error occures in the framework internally.

Author:
Theodor Foerster , Arne Broering
See Also:
Serialized Form

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

OXFException

public OXFException()
Constructs a new OXFException.


OXFException

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

Parameters:
reason - the reason of the exception.

OXFException

public OXFException(Throwable cause)
Constructs a new OXFException 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.

OXFException

public OXFException(String reason,
                    Throwable cause)
Constructs a new OXFException 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.