src/java/isac/wsdialog/DialogNotImplementedException.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 
     5 package isac.wsdialog;
     6 
     7 /**
     8  * Exception thrown by the DialogGuide if the action requested by the user is
     9  * known to the DialogGuide but not implemented yet.
    10  * 
    11  * @author Alan Krempler
    12  */
    13 class DialogNotImplementedException extends DialogProtocolException {
    14     protected int failed_action_;
    15 
    16     DialogNotImplementedException(int failed_action, int dialog_state) {
    17         super(failed_action, dialog_state,
    18                 "\nProcessing this request is not implemented yet.", null);
    19     }
    20 }