src/java/isac/wsdialog/DialogMathException.java
author wneuper
Wed, 15 Jun 2005 18:31:02 +0200
branchjava_rename_format
changeset 3922 fcd5648113ca
permissions -rw-r--r--
java: isac.util.tactics .. end renamed, formatted, inst_var_, import cleaned
     1 /*
     2  * Created on Feb 12, 2004
     3  *
     4  */
     5 
     6 package isac.wsdialog;
     7 
     8 /**
     9  * Exception thrown by the DialogGuide if the user action indicated caused an
    10  * error in the math engine.
    11  * 
    12  * @author Alan Krempler
    13  *  
    14  */
    15 class DialogMathException extends DialogProtocolException {
    16 
    17     DialogMathException(int failed_action, int dialog_state, Throwable cause) {
    18         super(failed_action, dialog_state,
    19                 "\nThis exception originates from the MathEngine.", cause);
    20     }
    21 }
    22