UserAbortException.php

Namespace

Drupal\Core\Command\Exception

File

core/lib/Drupal/Core/Command/Exception/UserAbortException.php

View source
<?php

declare (strict_types=1);
namespace Drupal\Core\Command\Exception;


/**
 * Thrown when a user declines an interactive console confirmation prompt.
 */
class UserAbortException extends \RuntimeException {
  public function __construct(string $message = 'Operation cancelled by user.', int $code = 0, ?\Throwable $previous = NULL) {
    parent::__construct($message, $code, $previous);
  }

}

Classes

Title Deprecated Summary
UserAbortException Thrown when a user declines an interactive console confirmation prompt.

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.