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