runff 1.0 commit
This commit is contained in:
20
lib/SimpleSAML/Error/UserAborted.php
Executable file
20
lib/SimpleSAML/Error/UserAborted.php
Executable file
@@ -0,0 +1,20 @@
|
||||
<?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);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user