Files
runff/lib/SimpleSAML/Error/UserAborted.php
2019-04-29 16:09:00 +02:00

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);
}
}