Changeset View
Changeset View
Standalone View
Standalone View
src/exception/usage/ArcanistUserAbortException.php
| <?php | <?php | ||||
| /** | /** | ||||
| * Thrown when the user chooses not to continue when warned that they're about | * Thrown when the user chooses not to continue when warned that they're about | ||||
| * to do something dangerous. | * to do something dangerous. | ||||
| * | |||||
| * @group workflow | |||||
| */ | */ | ||||
| final class ArcanistUserAbortException extends ArcanistUsageException { | final class ArcanistUserAbortException extends ArcanistUsageException { | ||||
| public function __construct() { | public function __construct() { | ||||
| parent::__construct('User aborted the workflow.'); | parent::__construct('User aborted the workflow.'); | ||||
| } | } | ||||
| } | } | ||||