com.bigzip
Class CriticalRuntimeException

java.lang.Object
  |
  +--java.lang.Throwable
        |
        +--java.lang.Exception
              |
              +--java.lang.RuntimeException
                    |
                    +--com.bigzip.CriticalRuntimeException
All Implemented Interfaces:
java.io.Serializable

public class CriticalRuntimeException
extends java.lang.RuntimeException

This is a RuntimeException derived class which will evoke the an exception dialog in order to alert the user of a critical problem in a BiGZiP plugin or BiGZiP itself.

This exception should not be raised except when a fauly occurs that cannot be recovered from even by aborting the currently executing action.

After the critical excpetion dialog is dismised, BiGZiP will terminate.

See Also:
Serialized Form

Constructor Summary
CriticalRuntimeException(java.lang.String message)
          Raises the exception dialog with the given message.
 
Methods inherited from class java.lang.Throwable
fillInStackTrace, getLocalizedMessage, getMessage, printStackTrace, printStackTrace, printStackTrace, toString
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Constructor Detail

CriticalRuntimeException

public CriticalRuntimeException(java.lang.String message)
Raises the exception dialog with the given message.
Parameters:
message - The message to appear in the 'standard' view of the exception dialog.