diff options
author | Jaime Pérez Crespo <jaime.perez@uninett.no> | 2013-10-25 07:32:55 +0000 |
---|---|---|
committer | Jaime Pérez Crespo <jaime.perez@uninett.no> | 2013-10-25 07:32:55 +0000 |
commit | ca8981538b8cefc9474d148cb8fcfac7e435d404 (patch) | |
tree | 108e8975d566788f258bbde8da7c2a1b4ad4c00b | |
parent | d0d6151ddffd2c4c8786c263680cb4194c07b4d5 (diff) | |
download | simplesamlphp-ca8981538b8cefc9474d148cb8fcfac7e435d404.zip simplesamlphp-ca8981538b8cefc9474d148cb8fcfac7e435d404.tar.gz simplesamlphp-ca8981538b8cefc9474d148cb8fcfac7e435d404.tar.bz2 |
Fixed a typo. Thanks to Boy Baukema for reporting issue #582.
git-svn-id: https://simplesamlphp.googlecode.com/svn/trunk@3283 44740490-163a-0410-bde0-09ae8108e29a
-rw-r--r-- | lib/SAML2/HTTPArtifact.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/SAML2/HTTPArtifact.php b/lib/SAML2/HTTPArtifact.php index d572742..2294c95 100644 --- a/lib/SAML2/HTTPArtifact.php +++ b/lib/SAML2/HTTPArtifact.php @@ -73,7 +73,7 @@ class SAML2_HTTPArtifact extends SAML2_Binding { $sourceId = bin2hex(substr($artifact,4,20)); }else{ - throw new Execption('Missing SAMLArt parameter.'); + throw new Exception('Missing SAMLArt parameter.'); } $metadataHandler = SimpleSAML_Metadata_MetaDataStorageHandler::getMetadataHandler(); |