12 lines
210 B
PHP
12 lines
210 B
PHP
<?php declare(strict_types = 1);
|
|
|
|
namespace MailPoet\API\REST;
|
|
|
|
interface Exception {
|
|
public function getStatusCode(): int;
|
|
|
|
public function getErrorCode(): string;
|
|
|
|
public function getErrors(): array;
|
|
}
|