|

acm.util
Class CancelledException

java.lang.Object
  |
  +--java.lang.Throwable
        |
        +--java.lang.Exception
              |
              +--java.lang.RuntimeException
                    |
                    +--acm.util.CancelledException

public class CancelledException extends RuntimeException

This class allows a dialog to signal clients that it has been cancelled. Because CancelledException is a subclass of RuntimeException, this exception need not be declared in throws clauses.


Constructor Summary
CancelledException()
Creates an CancelledException.
   

Constructor Detail

public CancelledException()

Creates an CancelledException.

 
Usage: throw new CancelledException(); 
 

|