gov.grants.apply.ws
Class ProcessorException

java.lang.Object
  |
  +--java.lang.Throwable
        |
        +--java.lang.Exception
              |
              +--gov.grants.apply.util.NestedException
                    |
                    +--gov.grants.apply.ws.ProcessorException
All Implemented Interfaces:
java.io.Serializable

public final class ProcessorException
extends gov.grants.apply.util.NestedException

Author:
Grants.gov WebServices Team A nested exception that uses GGWSWrapper to get server error messages.
See Also:
Serialized Form

Constructor Summary
ProcessorException(java.lang.String message)
          Create a ProcessorException with an error message.
ProcessorException(java.lang.String message, java.lang.Throwable cause)
          Create a ProcessorException with an error message and the original Throwable.
ProcessorException(java.lang.Throwable cause)
          Create a ProcessorException with the original Throwable.
 
Methods inherited from class gov.grants.apply.util.NestedException
getMessage, printStackTrace, printStackTrace, printStrackTrace, setCause, setMessage, toString
 
Methods inherited from class java.lang.Throwable
fillInStackTrace, getLocalizedMessage, printStackTrace
 
Methods inherited from class java.lang.Object
, clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Constructor Detail

ProcessorException

public ProcessorException(java.lang.String message)
Create a ProcessorException with an error message. Also appends the server message to the custom error message supplied in the arguments.
Parameters:
message - The error message

ProcessorException

public ProcessorException(java.lang.Throwable cause)
Create a ProcessorException with the original Throwable.
Parameters:
cause - The original Throwable.

ProcessorException

public ProcessorException(java.lang.String message,
                          java.lang.Throwable cause)
Create a ProcessorException with an error message and the original Throwable. Also appends the server message to the custom error message supplied in the arguments.
Parameters:
message - The error message.
cause - The original Throwable.