SalesPoint Framework v3.0

sale
Class CancelledException

java.lang.Object
  |
  +--java.lang.Throwable
        |
        +--java.lang.Exception
              |
              +--sale.CancelledException

public class CancelledException
extends Exception

Exception thrown when some action was cancelled by the user. You can use this exception to mark cancellation of your own actions.

Since:
v2.0
Version:
2.0 17/08/1999
Author:
Steffen Zschaler
See Also:
Serialized Form

Constructor Summary
CancelledException()
          Create a new CancelledException.
CancelledException(String sDetail)
          Create a new CancelledException with a detail message.
 
Methods inherited from class java.lang.Throwable
fillInStackTrace, getLocalizedMessage, getMessage, printStackTrace, printStackTrace, printStackTrace, toString
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Constructor Detail

CancelledException

public CancelledException()
Create a new CancelledException.

CancelledException

public CancelledException(String sDetail)
Create a new CancelledException with a detail message.
Parameters:
sDetail - the detail message.

SalesPoint Framework v3.0