diff options
author | Olav Morken <olav.morken@uninett.no> | 2012-09-13 08:30:37 +0000 |
---|---|---|
committer | Olav Morken <olav.morken@uninett.no> | 2012-09-13 08:30:37 +0000 |
commit | 08a4a0f26371bd4bc4360f927775380d2e2a5ee5 (patch) | |
tree | d5b583b0bee34ffbeb37c55f6fcf321e0a931183 /lib/SAML2 | |
parent | 2142cfe2deb050aaf9264ed562a5cc6771d8f634 (diff) | |
download | simplesamlphp-08a4a0f26371bd4bc4360f927775380d2e2a5ee5.zip simplesamlphp-08a4a0f26371bd4bc4360f927775380d2e2a5ee5.tar.gz simplesamlphp-08a4a0f26371bd4bc4360f927775380d2e2a5ee5.tar.bz2 |
SAML2_HTTPRedirect: Fix misspelling of "Exception".
git-svn-id: https://simplesamlphp.googlecode.com/svn/trunk@3161 44740490-163a-0410-bde0-09ae8108e29a
Diffstat (limited to 'lib/SAML2')
-rw-r--r-- | lib/SAML2/HTTPRedirect.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/SAML2/HTTPRedirect.php b/lib/SAML2/HTTPRedirect.php index 7369b32..6b001de 100644 --- a/lib/SAML2/HTTPRedirect.php +++ b/lib/SAML2/HTTPRedirect.php @@ -98,7 +98,7 @@ class SAML2_HTTPRedirect extends SAML2_Binding { } elseif (array_key_exists('SAMLResponse', $data)) { $msg = $data['SAMLResponse']; } else { - throw new Execption('Missing SAMLRequest or SAMLResponse parameter.'); + throw new Exception('Missing SAMLRequest or SAMLResponse parameter.'); } if (array_key_exists('SAMLEncoding', $data)) { |