Package org.hippoecm.hst.content.beans
Class ContentNodeBindingException
java.lang.Object
java.lang.Throwable
java.lang.Exception
org.hippoecm.hst.content.beans.ObjectBeanManagerException
org.hippoecm.hst.content.beans.ObjectBeanPersistenceException
org.hippoecm.hst.content.beans.ContentNodeBindingException
- All Implemented Interfaces:
Serializable
The
ContentNodeBindingException
class defines a binding exception
that a ContentNodeBinder
can throw when it is unable to perform its operation
successfully.- See Also:
-
Constructor Summary
ConstructorDescriptionConstructs a new ContentNodeBindingException exception.ContentNodeBindingException
(String message) Constructs a new ContentNodeBindingException exception with the given message.ContentNodeBindingException
(String msg, Throwable nested) Constructs a new ContentNodeBindingException exception when the container needs to do the following: throw an exception include the "nested" exception include a description messageContentNodeBindingException
(Throwable nested) Constructs a new ContentNodeBindingException 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
-
ContentNodeBindingException
public ContentNodeBindingException()Constructs a new ContentNodeBindingException exception. -
ContentNodeBindingException
Constructs a new ContentNodeBindingException exception with the given message.- Parameters:
message
- the exception message
-
ContentNodeBindingException
Constructs a new ContentNodeBindingException exception with the nested exception.- Parameters:
nested
- the nested exception
-
ContentNodeBindingException
Constructs a new ContentNodeBindingException exception when the container needs to do the following:- throw an exception
- include the "nested" exception
- include a description message
- Parameters:
msg
- the exception messagenested
- the nested exception
-