File "Exception.php"

Full Path: /home/warrior1/public_html/plugins/mailpoet/lib/API/REST/Exception.php
File size: 243 bytes
MIME-type: text/x-php
Charset: utf-8

<?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;
}