21 lines
424 B
PHP
Executable File
21 lines
424 B
PHP
Executable File
<?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);
|
|
}
|
|
}
|