-
Tim van Dijen authoredTim van Dijen authored
Code owners
Assign users and groups as approvers for specific file changes. Learn more.
UserAborted.php 421 B
<?php
namespace SimpleSAML\Error;
/**
* Exception indicating user aborting the authentication process.
*
* @package SimpleSAMLphp
*/
class UserAborted extends Error
{
/**
* Create the error
*
* @param \Exception|null $cause The exception that caused this error.
*/
public function __construct(\Exception $cause = null)
{
parent::__construct('USERABORTED', $cause);
}
}