oont-contents/plugins/mailpoet/lib/API/REST/Exception.php
2025-02-08 15:10:23 +01:00

14 lines
243 B
PHP

<?php declare(strict_types = 1);
namespace MailPoet\API\REST;
if (!defined('ABSPATH')) exit;
interface Exception {
public function getStatusCode(): int;
public function getErrorCode(): string;
public function getErrors(): array;
}