Package org.nuxeo.ecm.core.api
Class PropertyException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- java.lang.RuntimeException
-
- org.nuxeo.ecm.core.api.NuxeoException
-
- org.nuxeo.ecm.core.api.PropertyException
-
- All Implemented Interfaces:
Serializable
- Direct Known Subclasses:
BlobNotFoundException
,InvalidPropertyValueException
,PropertyNotFoundException
,ReadOnlyPropertyException
public class PropertyException extends NuxeoException
Base exception thrown when there is a problem accessing a property.- See Also:
- Serialized Form
-
-
Field Summary
-
Fields inherited from class org.nuxeo.ecm.core.api.NuxeoException
statusCode
-
-
Constructor Summary
Constructors Constructor Description PropertyException()
PropertyException(int statusCode)
PropertyException(String message)
PropertyException(String message, int statusCode)
PropertyException(String message, Throwable cause)
PropertyException(String message, Throwable cause, int statusCode)
PropertyException(Throwable cause)
PropertyException(Throwable cause, int statusCode)
-
Method Summary
-
Methods inherited from class org.nuxeo.ecm.core.api.NuxeoException
addInfo, getInfos, getMessage, getOriginalMessage, getStatusCode
-
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
-
-
-
Constructor Detail
-
PropertyException
public PropertyException()
-
PropertyException
public PropertyException(int statusCode)
- Since:
- 11.1
-
PropertyException
public PropertyException(String message)
-
PropertyException
public PropertyException(String message, int statusCode)
- Since:
- 11.1
-
PropertyException
public PropertyException(String message, Throwable cause, int statusCode)
- Since:
- 11.1
-
PropertyException
public PropertyException(Throwable cause)
-
PropertyException
public PropertyException(Throwable cause, int statusCode)
- Since:
- 11.
-
-