Class HstSiteMapItemHandlerException
java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
org.hippoecm.hst.core.sitemapitemhandler.HstSiteMapItemHandlerException
- All Implemented Interfaces:
Serializable
The
HstSiteMapItemHandlerException
class defines a general exception
that a HstSiteMapItemHandler can throw when it is unable to perform its operation
successfully.- See Also:
-
Constructor Summary
ConstructorDescriptionConstructs a new HstSiteMapItemHandlerException exception.HstSiteMapItemHandlerException
(String message) Constructs a new HstSiteMapItemHandlerException exception with the given message.HstSiteMapItemHandlerException
(String msg, Throwable nested) Constructs a new HstSiteMapItemHandlerException exception with message and nested exception.Constructs a new HstSiteMapItemHandlerException exception with the nested exception. -
Method Summary
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
Constructor Details
-
HstSiteMapItemHandlerException
public HstSiteMapItemHandlerException()Constructs a new HstSiteMapItemHandlerException exception. -
HstSiteMapItemHandlerException
Constructs a new HstSiteMapItemHandlerException exception with the given message.- Parameters:
message
- the exception message
-
HstSiteMapItemHandlerException
Constructs a new HstSiteMapItemHandlerException exception with the nested exception.- Parameters:
nested
- the nested exception
-
HstSiteMapItemHandlerException
Constructs a new HstSiteMapItemHandlerException exception with message and nested exception.- Parameters:
msg
- the exception messagenested
- the nested exception
-