waba.sys
Class AppExitException

java.lang.Object
  |
  +--java.lang.Throwable
        |
        +--java.lang.Exception
              |
              +--java.lang.RuntimeException
                    |
                    +--waba.sys.AppExitException

public class AppExitException
extends RuntimeException

This exception is thrown when Event.handleOneEvent() encounteres an event that requires the app to exit. The main purpose of this event is to unwind the stack all the way back to the main event loop so that the app can properly exit. WARNING: DO NOT CATCH THIS EXCEPTION IN YOUR APP UNLESS YOU KNOW WHAT YOU ARE DOING.


Constructor Summary
AppExitException()
           
AppExitException(String msg)
           
 
Methods inherited from class java.lang.Throwable
getMessage, printStackTrace, toString
 
Methods inherited from class java.lang.Object
equals, getClass, hashCode, notify, wait, wait
 

Constructor Detail

AppExitException

public AppExitException()

AppExitException

public AppExitException(String msg)