Class GpadException

java.lang.Object
  |
  +--java.lang.Throwable
        |
        +--java.lang.Exception
              |
              +--GpadException
All Implemented Interfaces:
java.io.Serializable

public class GpadException
extends java.lang.Exception

A GpadException signals that an exception of some sort has occurred while a GraphicPad component is executing. Subclasses may be defined to handle more specific exceptional conditions.

Version:
1.19.1
Author:
Joseph E. Dever
See Also:
Exception, Serialized Form

Constructor Summary
GpadException(java.lang.String info)
          Creates a new GpadException with the specified string message.
 
Method Summary
 void showMessage()
          Displays an informational message with a JOptionPane popup dialog.
 
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

GpadException

public GpadException(java.lang.String info)
Creates a new GpadException with the specified string message.
Parameters:
info - the infomational message
See Also:
Exception
Method Detail

showMessage

public void showMessage()
Displays an informational message with a JOptionPane popup dialog. The message is an argument to the constructor.
See Also:
GpadException(String)