com.ibm.portal.state.accessors.exceptions
Class InvalidPortletIdException

java.lang.Object
  extended by java.lang.Throwable
      extended by java.lang.Exception
          extended by com.ibm.portal.state.exceptions.StateException
              extended by com.ibm.portal.state.accessors.exceptions.SoloAccessorException
                  extended by com.ibm.portal.state.accessors.exceptions.InvalidPortletIdException
All Implemented Interfaces:
Localized, java.io.Serializable

public abstract class InvalidPortletIdException
extends SoloAccessorException

Exception which is supposed to be thrown within any SoloAccessor implementation that is not able to convert the String representing a portlet identifier into a corresponding ObjectID.

Since:
5.1
See Also:
Serialized Form

Field Summary
protected  java.lang.String iPortletId
          String representing the portlet identifier that could not be converted to ObjectID.
 
Fields inherited from class com.ibm.portal.state.accessors.exceptions.SoloAccessorException
accessor
 
Constructor Summary
InvalidPortletIdException(SoloAccessor aAccessor, java.lang.String aPortletId)
          Initializes this exception.
InvalidPortletIdException(SoloAccessor aAccessor, java.lang.String aPortletId, java.lang.Exception aReason)
          Initializes this exception.
 
Method Summary
 
Methods inherited from class java.lang.Throwable
fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
 
Methods inherited from interface com.ibm.portal.Localized
getDescription, getLocales, getTitle
 

Field Detail

iPortletId

protected final java.lang.String iPortletId
String representing the portlet identifier that could not be converted to ObjectID.

Constructor Detail

InvalidPortletIdException

public InvalidPortletIdException(SoloAccessor aAccessor,
                                 java.lang.String aPortletId)
Initializes this exception.

Parameters:
aAccessor - The SoloAccessor in which the problem occured.
aPortletId - The String representing a portlet identifier that could not be converted to ObjectID.

InvalidPortletIdException

public InvalidPortletIdException(SoloAccessor aAccessor,
                                 java.lang.String aPortletId,
                                 java.lang.Exception aReason)
Initializes this exception.

Parameters:
aAccessor - The SoloAccessor in which the problem occured.
aPortletId - The String representing a portlet identifier that could not be converted to ObjectID.
aReason - The exception that caused this exception to be thrown.