com.sun.portal.providers
Class UnknownEditTypeException

java.lang.Object
  extended byjava.lang.Throwable
      extended byjava.lang.Exception
          extended bycom.sun.portal.providers.ProviderException
              extended bycom.sun.portal.providers.UnknownEditTypeException
All Implemented Interfaces:
java.io.Serializable

public class UnknownEditTypeException
extends ProviderException

This exception may be thrown from Provider.getEditType() if an unknown or undefined edit type is encountered.

See Also:
ProviderException, Provider.getEditType(), Serialized Form

Field Summary
 
Fields inherited from class com.sun.portal.providers.ProviderException
wrapped
 
Constructor Summary
UnknownEditTypeException(java.lang.String msg)
          Constructs a new exception with the specified message, indicating an unexpected edit type is encountered.

UnknownEditTypeException(java.lang.String msg, java.lang.Throwable e)
          Constructs a new exception with the specified message, and the original exception or error.

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

Constructor Detail

UnknownEditTypeException

public UnknownEditTypeException(java.lang.String msg)
Constructs a new exception with the specified message, indicating an unexpected edit type is encountered.

Parameters:
msg - The descriptive message.

UnknownEditTypeException

public UnknownEditTypeException(java.lang.String msg,
                                java.lang.Throwable e)
Constructs a new exception with the specified message, and the original exception or error.

Parameters:
msg - The descriptive message.
e - The original exception or error.