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