acm.util
Class CancelledException

java.lang.Object
  extended by java.lang.Throwable
      extended by java.lang.Exception
          extended by java.lang.RuntimeException
              extended by 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.
 
Method Summary
 

Constructor Detail

public CancelledException()

Creates an CancelledException.

 
Usage: throw new CancelledException();