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
- See Also:
- Serialized Form
- Source Code:
- CancelledException.java
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.