geno/wp-content/plugins/mailpoet/lib/Automation/Engine/Exceptions/NotFoundException.php
2024-02-01 11:54:18 +00:00

14 lines
305 B
PHP

<?php declare(strict_types = 1);
namespace MailPoet\Automation\Engine\Exceptions;
if (!defined('ABSPATH')) exit;
/**
* USE: When the main resource we're interested in doesn't exist.
* API: 404 Not Found
*/
class NotFoundException extends UnexpectedValueException {
protected $statusCode = 404;
}