-
Thijs Kinkhorst authored75da426f
Code owners
Assign users and groups as approvers for specific file changes. Learn more.
<?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);
}
}