Further Drupal 8.6.4 changes. Some core files were not committed before a commit...
[yaffs-website] / vendor / drush / drush / src / Exceptions / UserAbortException.php
1 <?php
2
3 namespace Drush\Exceptions;
4
5 use Throwable;
6
7 /**
8  * Throw an exception indicating that the user cancelled the operation.
9  */
10 class UserAbortException extends \Exception
11 {
12     public function __construct($message = "Cancelled.", $code = 0, \Throwable $previous = null)
13     {
14         parent::__construct($message, $code, $previous);
15     }
16 }