Class PropertyException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- microsoft.exchange.webservices.data.core.exception.service.local.ServiceLocalException
-
- microsoft.exchange.webservices.data.core.exception.service.local.PropertyException
-
- All Implemented Interfaces:
Serializable
- Direct Known Subclasses:
ServiceObjectPropertyException
public class PropertyException extends ServiceLocalException
Represents an error that occurs when an operation on a property fails.- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description PropertyException()Instantiates a new property exception.PropertyException(String name)Instantiates a new property exception.PropertyException(String message, String name)Instantiates a new property exception.PropertyException(String message, String name, Exception innerException)Instantiates a new property exception.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description StringgetName()Gets the name.-
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
-
-
-
Constructor Detail
-
PropertyException
public PropertyException()
Instantiates a new property exception.
-
PropertyException
public PropertyException(String name)
Instantiates a new property exception.- Parameters:
name- the name
-
PropertyException
public PropertyException(String message, String name)
Instantiates a new property exception.- Parameters:
message- the messagename- the name
-
PropertyException
public PropertyException(String message, String name, Exception innerException)
Instantiates a new property exception.- Parameters:
message- the messagename- the nameinnerException- the inner exception
-
-