org.jboss.resteasy.spi
Class Failure

java.lang.Object
  extended by java.lang.Throwable
      extended by java.lang.Exception
          extended by java.lang.RuntimeException
              extended by org.jboss.resteasy.spi.Failure
All Implemented Interfaces:
java.io.Serializable
Direct Known Subclasses:
LoggableFailure, NoResourceFoundFailure

public class Failure
extends java.lang.RuntimeException

This exception should only be used by Resteasy integrators. Applications code should use WebApplicationException.

This is thrown by Restasy runtime when a failure occurs.

Version:
$Revision: 1 $
Author:
Bill Burke
See Also:
Serialized Form

Field Summary
protected  int errorCode
           
protected  boolean loggable
           
protected  Response response
           
 
Constructor Summary
Failure(int errorCode)
           
Failure(java.lang.String s)
           
Failure(java.lang.String s, int errorCode)
           
Failure(java.lang.String s, Response response)
           
Failure(java.lang.String s, java.lang.Throwable throwable)
           
Failure(java.lang.String s, java.lang.Throwable throwable, int errorCode)
           
Failure(java.lang.String s, java.lang.Throwable throwable, Response response)
           
Failure(java.lang.Throwable throwable)
           
Failure(java.lang.Throwable throwable, int errorCode)
           
Failure(java.lang.Throwable throwable, Response response)
           
 
Method Summary
 int getErrorCode()
           
 Response getResponse()
           
 boolean isLoggable()
           
 void setErrorCode(int errorCode)
           
 void setLoggable(boolean loggable)
           
 
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
 

Field Detail

errorCode

protected int errorCode

loggable

protected boolean loggable

response

protected Response response
Constructor Detail

Failure

public Failure(java.lang.String s,
               Response response)

Failure

public Failure(java.lang.String s,
               java.lang.Throwable throwable,
               Response response)

Failure

public Failure(java.lang.Throwable throwable,
               Response response)

Failure

public Failure(java.lang.String s,
               java.lang.Throwable throwable)

Failure

public Failure(java.lang.Throwable throwable)

Failure

public Failure(java.lang.String s)

Failure

public Failure(int errorCode)

Failure

public Failure(java.lang.String s,
               int errorCode)

Failure

public Failure(java.lang.String s,
               java.lang.Throwable throwable,
               int errorCode)

Failure

public Failure(java.lang.Throwable throwable,
               int errorCode)
Method Detail

getErrorCode

public int getErrorCode()

setErrorCode

public void setErrorCode(int errorCode)

isLoggable

public boolean isLoggable()

setLoggable

public void setLoggable(boolean loggable)

getResponse

public Response getResponse()


Copyright © 2009. All Rights Reserved.