src/java/isac/wsdialog/DialogMathException.java
branchjava_rename_format
changeset 3922 fcd5648113ca
equal deleted inserted replaced
963:b4896ce4d1b0 3922:fcd5648113ca
       
     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