File "AccessDeniedException.php"

Full Path: /home/warrior1/public_html/plugins/mailpoet/lib/Automation/Engine/Exceptions/AccessDeniedException.php
File size: 323 bytes
MIME-type: text/x-php
Charset: utf-8

<?php declare(strict_types = 1);

namespace MailPoet\Automation\Engine\Exceptions;

if (!defined('ABSPATH')) exit;


/**
 * USE: When an action is forbidden for given actor (although generally valid).
 * API: 403 Forbidden
 */
class AccessDeniedException extends UnexpectedValueException {
  protected $statusCode = 403;
}