Corrected exception declaration.
authorcantor <cantor@cb58f699-b61c-0410-a6fe-9272a202ed29>
Wed, 19 Jun 2002 01:36:01 +0000 (01:36 +0000)
committercantor <cantor@cb58f699-b61c-0410-a6fe-9272a202ed29>
Wed, 19 Jun 2002 01:36:01 +0000 (01:36 +0000)
git-svn-id: https://svn.middleware.georgetown.edu/cpp-sp/trunk@9 cb58f699-b61c-0410-a6fe-9272a202ed29

include/shib.h

index 93a6287..cab5781 100644 (file)
@@ -24,7 +24,9 @@ namespace shibboleth
     class SHIB_EXPORTS UnsupportedProtocolException : public saml::SAMLException
     {
     public:
+        explicit UnsupportedProtocolException(const char* msg) : saml::SAMLException(msg) {}
         explicit UnsupportedProtocolException(const std::string& msg) : saml::SAMLException(msg) {}
+        explicit UnsupportedProtocolException(saml::QName codes[], const char* msg) : saml::SAMLException(codes,msg) {}
         explicit UnsupportedProtocolException(saml::QName codes[], const std::string& msg) : saml::SAMLException(codes, msg) {}
     };