ccl.util
Class ApplicationException

java.lang.Object
  |
  +--java.lang.Throwable
        |
        +--java.lang.Exception
              |
              +--java.lang.RuntimeException
                    |
                    +--ccl.util.ApplicationException
All Implemented Interfaces:
java.io.Serializable

public class ApplicationException
extends java.lang.RuntimeException

This exception just extends RuntimeException and is primarily used by Util.panicIf(boolean).

See Also:
Util.panicIf(boolean), Serialized Form

Constructor Summary
ApplicationException()
          Constructs an ApplicationException with no specified detail message.
ApplicationException(java.lang.String sMessage_)
          Constructs an ApplicationException.
 
Methods inherited from class java.lang.Throwable
fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Constructor Detail

ApplicationException

public ApplicationException()
Constructs an ApplicationException with no specified detail message.


ApplicationException

public ApplicationException(java.lang.String sMessage_)
Constructs an ApplicationException.

Parameters:
sMessage_ - to print a message describing what caused the exception.