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