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
wneuper@3922
     1
/*
wneuper@3922
     2
 * Created on Feb 12, 2004
wneuper@3922
     3
 *
wneuper@3922
     4
 */
wneuper@3922
     5
wneuper@3922
     6
package isac.wsdialog;
wneuper@3922
     7
wneuper@3922
     8
/**
wneuper@3922
     9
 * Exception thrown by the DialogGuide if the user action indicated caused an
wneuper@3922
    10
 * error in the math engine.
wneuper@3922
    11
 * 
wneuper@3922
    12
 * @author Alan Krempler
wneuper@3922
    13
 *  
wneuper@3922
    14
 */
wneuper@3922
    15
class DialogMathException extends DialogProtocolException {
wneuper@3922
    16
wneuper@3922
    17
    DialogMathException(int failed_action, int dialog_state, Throwable cause) {
wneuper@3922
    18
        super(failed_action, dialog_state,
wneuper@3922
    19
                "\nThis exception originates from the MathEngine.", cause);
wneuper@3922
    20
    }
wneuper@3922
    21
}
wneuper@3922
    22