Searched defs:ActiveRequestorException (Results 1 - 1 of 1) sorted by relevance

/forgerock/openam/openam-federation/openam-federation-library/src/main/java/org/forgerock/openam/wsfederation/common/
H A DActiveRequestorException.java36 public class ActiveRequestorException extends WSFederationException { class in inherits:WSFederationException
42 private ActiveRequestorException(QName faultCode, String key, String... args) { method in class:ActiveRequestorException
55 public static ActiveRequestorException newSenderException(String key, String... args) {
56 return new ActiveRequestorException(SOAPConstants.SOAP_SENDER_FAULT, key, args);
66 public static ActiveRequestorException newReceiverException(String key, String... args) {
67 return new ActiveRequestorException(SOAPConstants.SOAP_RECEIVER_FAULT, key, args);
76 public static ActiveRequestorException newReceiverException(Throwable throwable) {
77 return new ActiveRequestorException(SOAPConstants.SOAP_RECEIVER_FAULT, "unexpectedError",

Completed in 20 milliseconds