summaryrefslogtreecommitdiffstats
path: root/lib/SimpleSAML/Error/UserAborted.php
blob: 6bd2762afae00d4b0aad0630092cb550683af820 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
<?php

/**
 * Exception indicating user aborting the authentication process.
 *
 * @package SimpleSAMLphp
 */
class SimpleSAML_Error_UserAborted extends SimpleSAML_Error_Error {

	/**
	 * Create the error
	 *
	 * @param Exception|NULL $cause  The exception that caused this error.
	 */
	public function __construct(Exception $cause = NULL) {
		parent::__construct('USERABORTED', $cause);
	}

}