Skip to content
Snippets Groups Projects
Code owners
Assign users and groups as approvers for specific file changes. Learn more.
UserAborted.php 394 B
<?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);
	}

}