01: /*
02: * @(#)AsciiFormInputExpectedException.java 1.5 01/26/01 Sun Microsystems
03: *
04: * Please read the License Agreement and other supplemental license terms, if
05: * any, accompanying this software package before using any of the software
06: * provided. If you do not agree to the terms of the License Agreement or any
07: * other supplemental terms, please promptly destroy or return the software to
08: * Sun Microsystems, Inc.
09: *
10: * "CONFIDENTIAL AND PROPRIETARY" Copyright © 2001 Sun Microsystems, Inc. All
11: * rights reserved.
12: */
13:
14: package com.sun.portal.providers;
15:
16: import java.lang.*;
17: import com.sun.portal.providers.*;
18:
19: /**
20: * <p>This exception should be thrown from <code>processEdit</code>
21: * when it requires ASCII-only encoded form input but is sent something else.<br><br>
22: *
23: * @see com.sun.portal.providers.ProviderException
24: * @see com.sun.portal.providers.Provider#getEdit
25: *
26: */
27:
28: public class AsciiFormInputExpectedException extends
29: InvalidEditFormDataException {
30:
31: /**
32: * Constructs a new exception with the specified message, indicating a
33: * ASCII encoded string is expected but got something else from the
34: * input is sent.<br><br>
35: *
36: * @param msg The descriptive message.
37: */
38: public AsciiFormInputExpectedException(String msg) {
39: super(msg);
40: }
41: }
|