Class HstSiteMapItemHandlerException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- java.lang.RuntimeException
-
- org.hippoecm.hst.core.sitemapitemhandler.HstSiteMapItemHandlerException
-
- All Implemented Interfaces:
Serializable
public class HstSiteMapItemHandlerException extends RuntimeException
TheHstSiteMapItemHandlerException
class defines a general exception that a HstSiteMapItemHandler can throw when it is unable to perform its operation successfully.- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description HstSiteMapItemHandlerException()
Constructs 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.HstSiteMapItemHandlerException(Throwable nested)
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 Detail
-
HstSiteMapItemHandlerException
public HstSiteMapItemHandlerException()
Constructs a new HstSiteMapItemHandlerException exception.
-
HstSiteMapItemHandlerException
public HstSiteMapItemHandlerException(String message)
Constructs a new HstSiteMapItemHandlerException exception with the given message.- Parameters:
message
- the exception message
-
HstSiteMapItemHandlerException
public HstSiteMapItemHandlerException(Throwable nested)
Constructs a new HstSiteMapItemHandlerException exception with the nested exception.- Parameters:
nested
- the nested exception
-
-