src/java/isac/wsdialog/DialogNotImplementedException.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/DialogNotImplementedException.java	Wed Jun 15 18:31:02 2005 +0200
     1.3 @@ -0,0 +1,20 @@
     1.4 +/*
     1.5 + * Created on Nov 18, 2003
     1.6 + */
     1.7 +
     1.8 +package isac.wsdialog;
     1.9 +
    1.10 +/**
    1.11 + * Exception thrown by the DialogGuide if the action requested by the user is
    1.12 + * known to the DialogGuide but not implemented yet.
    1.13 + * 
    1.14 + * @author Alan Krempler
    1.15 + */
    1.16 +class DialogNotImplementedException extends DialogProtocolException {
    1.17 +    protected int failed_action_;
    1.18 +
    1.19 +    DialogNotImplementedException(int failed_action, int dialog_state) {
    1.20 +        super(failed_action, dialog_state,
    1.21 +                "\nProcessing this request is not implemented yet.", null);
    1.22 +    }
    1.23 +}
    1.24 \ No newline at end of file