com.google.checkout
Class CheckoutException

java.lang.Object
  extended by java.lang.Throwable
      extended by java.lang.Exception
          extended by com.google.checkout.CheckoutException
All Implemented Interfaces:
java.io.Serializable
Direct Known Subclasses:
CheckoutHandlerException, CheckoutXmlProcessorException

public class CheckoutException
extends java.lang.Exception

This class is the base for any Checkout specific exceptions.

Author:
simonjsmith
See Also:
Serialized Form

Constructor Summary
CheckoutException()
          Creates a new instance of CheckoutException without detail message.
CheckoutException(java.lang.Exception e)
          A constructor which takes a nested exception
CheckoutException(java.lang.String msg)
          A constructor which takes an error message
CheckoutException(java.lang.String msg, java.lang.Exception e)
          A constructor which takes an error message and a nested 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
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Constructor Detail

CheckoutException

public CheckoutException()
Creates a new instance of CheckoutException without detail message.


CheckoutException

public CheckoutException(java.lang.Exception e)
A constructor which takes a nested exception

Parameters:
e - The exception
See Also:
Exception

CheckoutException

public CheckoutException(java.lang.String msg,
                         java.lang.Exception e)
A constructor which takes an error message and a nested exception

Parameters:
msg - The error message
e - The exception

CheckoutException

public CheckoutException(java.lang.String msg)
A constructor which takes an error message

Parameters:
msg - The error message