src/java/isac/wsdialog/DialogUnknownActionException.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 Nov 18, 2003
     3  */
     4 package isac.wsdialog;
     5 
     6 /**
     7  * Exception thrown by the DialogGuide if the user action indicated is not known
     8  * to the DialogGuide.
     9  * 
    10  * @author Alan Krempler
    11  */
    12 class DialogUnknownActionException extends DialogProtocolException {
    13 
    14     DialogUnknownActionException(int failed_action, int dialog_state) {
    15         super(failed_action, dialog_state, "\nThis request is unknown.", null);
    16     }
    17 
    18 }