guarana.toolkit.adapter
Class AdapterException

java.lang.Object
  extended by java.lang.Throwable
      extended by java.lang.Exception
          extended by guarana.toolkit.adapter.AdapterException
All Implemented Interfaces:
Serializable

public class AdapterException
extends Exception

Holds any exception that may be raised inside an adapter method execution.

Since:
Guaranį SDK 1.0.0
Author:
Rafael Z. Frantz
See Also:
Serialized Form

Constructor Summary
AdapterException()
          Constructs a new Adapter Exception.
AdapterException(String message)
          Constructs a new Adapter Exception.
AdapterException(String message, Throwable cause)
          Constructs a new Adapter Exception.
AdapterException(Throwable cause)
          Constructs a new Adapter Exception.
 
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
equals, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Constructor Detail

AdapterException

public AdapterException()
Constructs a new Adapter Exception.


AdapterException

public AdapterException(String message)
Constructs a new Adapter Exception.

Parameters:
message - The message of this exception.

AdapterException

public AdapterException(String message,
                        Throwable cause)
Constructs a new Adapter Exception.

Parameters:
message - The exception message.
cause - An object that represents this exception.

AdapterException

public AdapterException(Throwable cause)
Constructs a new Adapter Exception.

Parameters:
cause - An object that represents this exception.


Guaranį DSL Home