Class PolicyResolutionException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- de.aristaflow.adept2.core.orgmodelmanager.PolicyResolutionException
-
- All Implemented Interfaces:
Serializable
public class PolicyResolutionException extends Exception
ThisPolicyResolutionException
is thrown byPolicyResolution
's methods when the provided OrgPolicy (Bearbeiterformel) is syntactically or semantically incorrect.- Author:
- Patrick Schmidt
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description PolicyResolutionException()
Constructs a newPolicyResolutionException
withnull
as detail message.PolicyResolutionException(String message)
Constructs a newPolicyResolutionException
with the specified detail message.PolicyResolutionException(String message, Throwable cause)
Constructs a newPolicyResolutionException
with the specified detail message and cause.
-
Method Summary
-
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
-
-
-
Constructor Detail
-
PolicyResolutionException
public PolicyResolutionException()
Constructs a newPolicyResolutionException
withnull
as detail message.
-
PolicyResolutionException
public PolicyResolutionException(String message)
Constructs a newPolicyResolutionException
with the specified detail message.- Parameters:
message
- the detail message
-
-