Class RequestPolicyException

All Implemented Interfaces:
PortableObject, SerializationSupport, Serializable

public class RequestPolicyException extends PortableException
Signals that a request was not allowed to complete due to the related service action being disallowed by the corresponding ActionPolicy.
Since:
Coherence 3.6
Author:
rhl 2009.10.02
See Also:
  • Constructor Details

    • RequestPolicyException

      public RequestPolicyException()
      Constructs a RequestPolicyException with no detail message.
    • RequestPolicyException

      public RequestPolicyException(String s)
      Constructs a RequestPolicyException with the specified detail message.
      Parameters:
      s - the String that contains a detailed message
    • RequestPolicyException

      public RequestPolicyException(Throwable e)
      Construct a RequestPolicyException from a Throwable object.
      Parameters:
      e - the Throwable object
    • RequestPolicyException

      public RequestPolicyException(String s, Throwable e)
      Construct a RequestPolicyException from a Throwable object and an additional description.
      Parameters:
      s - the additional description
      e - the Throwable object
  • Method Details