Class ServiceBrokerInvalidOriginatingIdentityException
java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
org.springframework.cloud.servicebroker.exception.ServiceBrokerException
org.springframework.cloud.servicebroker.exception.ServiceBrokerInvalidOriginatingIdentityException
- All Implemented Interfaces:
Serializable
Thrown to indicate that parameters passed in the originating identity header are not
understood by the service broker.
Throwing this exception will result in an HTTP status code 422 UNPROCESSABLE ENTITY being returned to the platform.
- Author:
- Roy Clarkson
- See Also:
-
Constructor Summary
ConstructorDescriptionConstruct an exception with the provided message.ServiceBrokerInvalidOriginatingIdentityException
(String message, Throwable cause) Construct an exception with the provided message and cause. -
Method Summary
Methods inherited from class org.springframework.cloud.servicebroker.exception.ServiceBrokerException
getErrorMessage
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
Constructor Details
-
ServiceBrokerInvalidOriginatingIdentityException
Construct an exception with the provided message.- Parameters:
message
- the exception message
-
ServiceBrokerInvalidOriginatingIdentityException
Construct an exception with the provided message and cause.- Parameters:
message
- the exception messagecause
- the cause of the exception
-