Package org.hippoecm.hst.content.beans
Class ObjectBeanPersistenceException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- org.hippoecm.hst.content.beans.ObjectBeanManagerException
-
- org.hippoecm.hst.content.beans.ObjectBeanPersistenceException
-
- All Implemented Interfaces:
Serializable
- Direct Known Subclasses:
ContentNodeBindingException
public class ObjectBeanPersistenceException extends ObjectBeanManagerException
TheObjectBeanPersistenceException
class defines a general exception that aObjectBeanPersistenceManager
can throw when it is unable to perform its operation successfully.- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description ObjectBeanPersistenceException()
Constructs a new ObjectBeanPersistenceException exception.ObjectBeanPersistenceException(String message)
Constructs a new ObjectBeanPersistenceException exception with the given message.ObjectBeanPersistenceException(String msg, Throwable nested)
Constructs a new ObjectBeanPersistenceException exception when the container needs to do the following: throw an exception include the "nested" exception include a description messageObjectBeanPersistenceException(Throwable nested)
Constructs a new ObjectBeanPersistenceException 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
-
ObjectBeanPersistenceException
public ObjectBeanPersistenceException()
Constructs a new ObjectBeanPersistenceException exception.
-
ObjectBeanPersistenceException
public ObjectBeanPersistenceException(String message)
Constructs a new ObjectBeanPersistenceException exception with the given message.- Parameters:
message
- the exception message
-
ObjectBeanPersistenceException
public ObjectBeanPersistenceException(Throwable nested)
Constructs a new ObjectBeanPersistenceException exception with the nested exception.- Parameters:
nested
- the nested exception
-
ObjectBeanPersistenceException
public ObjectBeanPersistenceException(String msg, Throwable nested)
Constructs a new ObjectBeanPersistenceException 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
-
-