From abf791c2298bb2103d06ab92111e935effcd865c Mon Sep 17 00:00:00 2001 From: Olav Morken <olav.morken@uninett.no> Date: Tue, 8 Feb 2011 13:50:42 +0000 Subject: [PATCH] Error_UserAborted: New error class for when the user aborts the login process. Thanks to Brook Schofield for adding this. git-svn-id: https://simplesamlphp.googlecode.com/svn/trunk@2733 44740490-163a-0410-bde0-09ae8108e29a --- lib/SimpleSAML/Error/UserAborted.php | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 lib/SimpleSAML/Error/UserAborted.php diff --git a/lib/SimpleSAML/Error/UserAborted.php b/lib/SimpleSAML/Error/UserAborted.php new file mode 100644 index 000000000..901992b53 --- /dev/null +++ b/lib/SimpleSAML/Error/UserAborted.php @@ -0,0 +1,13 @@ +<?php +/** + * Exception indicating user aborting the authentication proces. + * + * @package simpleSAMLphp_base + * @version $Id$ + * + */ +class SimpleSAML_Error_UserAborted extends SimpleSAML_Error_User{ + +} + +?> -- GitLab