AssertionCreationExceptionpublic final class AssertionCreationException extends com.sun.xml.ws.policy.PolicyException Exception thrown in case of assertion creation failure. |
Fields Summary |
---|
private final com.sun.xml.ws.policy.sourcemodel.AssertionData | assertionData |
Constructors Summary |
---|
public AssertionCreationException(com.sun.xml.ws.policy.sourcemodel.AssertionData assertionData, String message)Constructs a new assertion creation exception with the specified detail message and cause.
Note that the detail message associated with {@code cause} is not automatically incorporated in
this exception's detail message.
super(message);
this.assertionData = assertionData;
| public AssertionCreationException(com.sun.xml.ws.policy.sourcemodel.AssertionData assertionData, String message, Throwable cause)Constructs a new assertion creation exception with the specified detail message and cause.
Note that the detail message associated with {@code cause} is not automatically incorporated in
this exception's detail message.
super(message, cause);
this.assertionData = assertionData;
| public AssertionCreationException(com.sun.xml.ws.policy.sourcemodel.AssertionData assertionData, Throwable cause)Constructs a new assertion creation exception with the specified detail message and cause.
super(cause);
this.assertionData = assertionData;
|
|