src/java/isac/wsdialog/DialogMathException.java
branchjava_rename_format
changeset 3922 fcd5648113ca
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/src/java/isac/wsdialog/DialogMathException.java	Wed Jun 15 18:31:02 2005 +0200
     1.3 @@ -0,0 +1,22 @@
     1.4 +/*
     1.5 + * Created on Feb 12, 2004
     1.6 + *
     1.7 + */
     1.8 +
     1.9 +package isac.wsdialog;
    1.10 +
    1.11 +/**
    1.12 + * Exception thrown by the DialogGuide if the user action indicated caused an
    1.13 + * error in the math engine.
    1.14 + * 
    1.15 + * @author Alan Krempler
    1.16 + *  
    1.17 + */
    1.18 +class DialogMathException extends DialogProtocolException {
    1.19 +
    1.20 +    DialogMathException(int failed_action, int dialog_state, Throwable cause) {
    1.21 +        super(failed_action, dialog_state,
    1.22 +                "\nThis exception originates from the MathEngine.", cause);
    1.23 +    }
    1.24 +}
    1.25 +