Class ProvisioningException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- com.adobe.cq.cloudservices.provisioning.ProvisioningException
-
- All Implemented Interfaces:
java.io.Serializable
public class ProvisioningException extends java.lang.Exception
Exception which should be thrown if provisioning fails for some reason.- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description ProvisioningException(java.lang.String msg)
Constructs a new Provisioning exception with the given text.ProvisioningException(java.lang.String msg, java.lang.Throwable t)
Constructs a new Provisioning exception with the given text and cause.
-
-
-
Constructor Detail
-
ProvisioningException
public ProvisioningException(java.lang.String msg)
Constructs a new Provisioning exception with the given text.- Parameters:
msg
- the exception text
-
ProvisioningException
public ProvisioningException(java.lang.String msg, java.lang.Throwable t)
Constructs a new Provisioning exception with the given text and cause.- Parameters:
msg
- the exception textt
- the root cause
-
-