Class ProvisioningException

java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
org.springframework.core.NestedRuntimeException
org.springframework.cloud.stream.provisioning.ProvisioningException
All Implemented Interfaces:
Serializable

public class ProvisioningException extends org.springframework.core.NestedRuntimeException
Generic unchecked exception to wrap middleware or technology specific exceptions. Wrapped exceptions could be either checked or unchecked. See NestedRuntimeException for more usage details.
Author:
Soby Chacko
See Also:
  • Constructor Details

    • ProvisioningException

      public ProvisioningException(String msg)
      Constructor that takes a message.
      Parameters:
      msg - the detail message
    • ProvisioningException

      public ProvisioningException(String msg, Throwable cause)
      Constructor that takes a message and a root cause.
      Parameters:
      msg - the detail message
      cause - the cause of the exception. This argument is generally expected to be middleware specific.