com.ibm.etill.cashier
Class ProfileException

java.lang.Object
  java.lang.Throwable
      java.lang.Exception
          com.ibm.etill.cashier.CashierException
              com.ibm.etill.cashier.ProfileException
All Implemented Interfaces:
java.io.Serializable

public class ProfileException
extends CashierException

Thrown by the Cashier to indicate an error with a profile.

See Also:
Serialized Form

Constructor Summary
ProfileException(java.lang.String message)
Constructs a new ProfileException with the specified detail message
ProfileException(java.lang.String message, java.lang.Throwable nestedException)
Constructs a new ProfileException with the specified detail message and Throwable object
Methods inherited from class com.ibm.etill.cashier.CashierException
getNestedException
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

ProfileException

public ProfileException(java.lang.String message)
Constructs a new ProfileException with the specified detail message

ProfileException

public ProfileException(java.lang.String message,
                        java.lang.Throwable nestedException)
Constructs a new ProfileException with the specified detail message and Throwable object
Parameters:
nestedException - the Throwable object to store in this exception.

Feedback