[cpp-sp COMMIT] /branches/REL_2/shibsp/handler/impl/AbstractHandler.cpp
noreply at shibboleth.net
noreply at shibboleth.net
Thu Nov 21 15:17:14 EST 2013
Author: scantor
Date: Thu Nov 21 15:17:14 2013
New Revision: 3881
URL: http://svn.shibboleth.net/view/cpp-sp?rev=3881&view=rev
Log:
https://issues.shibboleth.net/jira/browse/SSPCPP-605
Modified:
branches/REL_2/shibsp/handler/impl/AbstractHandler.cpp
Modified: branches/REL_2/shibsp/handler/impl/AbstractHandler.cpp
URL: http://svn.shibboleth.net/view/cpp-sp/branches/REL_2/shibsp/handler/impl/AbstractHandler.cpp?rev=3881&r1=3880&r2=3881&view=diff
==============================================================================
--- branches/REL_2/shibsp/handler/impl/AbstractHandler.cpp (original)
+++ branches/REL_2/shibsp/handler/impl/AbstractHandler.cpp Thu Nov 21 15:17:14 2013
@@ -449,7 +449,7 @@
const saml2p::StatusCode* sc = status->getStatusCode();
const XMLCh* code = sc ? sc->getValue() : nullptr;
if (code && !XMLString::equals(code,saml2p::StatusCode::SUCCESS)) {
- FatalProfileException ex("SAML response contained an error.");
+ FatalProfileException ex("SAML response reported an IdP error.");
annotateException(&ex, role, status); // throws it
}
}
@@ -462,7 +462,7 @@
const saml1p::StatusCode* sc = status->getStatusCode();
const xmltooling::QName* code = sc ? sc->getValue() : nullptr;
if (code && *code != saml1p::StatusCode::SUCCESS) {
- FatalProfileException ex("SAML response contained an error.");
+ FatalProfileException ex("SAML response reported an IdP error.");
annotateException(&ex, role, status); // throws it
}
}
More information about the commits
mailing list