1<?php 2 3/** 4 * Thrown when the user chooses not to continue when warned that they're about 5 * to do something dangerous. 6 */ 7final class ArcanistUserAbortException extends ArcanistUsageException { 8 9 public function __construct() { 10 parent::__construct(pht('User aborted the workflow.')); 11 } 12 13} 14