com.sun.portal.providers
Class AsciiFormInputExpectedException

java.lang.Object
  |
  +--java.lang.Throwable
        |
        +--java.lang.Exception
              |
              +--com.sun.portal.providers.ProviderException
                    |
                    +--com.sun.portal.providers.InvalidEditFormDataException
                          |
                          +--com.sun.portal.providers.AsciiFormInputExpectedException
All Implemented Interfaces:
Serializable

public class AsciiFormInputExpectedException
extends InvalidEditFormDataException

This exception should be thrown from processEdit when it requires ASCII-only encoded form input but is sent something else.

See Also:
ProviderException, Provider.getEdit(javax.servlet.http.HttpServletRequest, javax.servlet.http.HttpServletResponse), Serialized Form

Constructor Summary
AsciiFormInputExpectedException(String msg)
          Constructs a new exception with the specified message, indicating a ASCII encoded string is expected but got something else from the input is sent.

 
Methods inherited from class com.sun.portal.providers.ProviderException
getWrapped, printStackTrace, printStackTrace, printStackTrace, toString
 
Methods inherited from class java.lang.Throwable
fillInStackTrace, getLocalizedMessage, getMessage
 
Methods inherited from class java.lang.Object
equals, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Constructor Detail

AsciiFormInputExpectedException

public AsciiFormInputExpectedException(String msg)
Constructs a new exception with the specified message, indicating a ASCII encoded string is expected but got something else from the input is sent.

Parameters:
msg - The descriptive message.