Uname: Linux webm012.cluster130.gra.hosting.ovh.net 5.15.167-ovh-vps-grsec-zfs-classid #1 SMP Tue Sep 17 08:14:20 UTC 2024 x86_64
Software: Apache
PHP version: 8.0.30 [ PHP INFO ] PHP os: Linux
Server Ip: 145.239.37.162
Your Ip: 216.73.216.190
User: dreampi (1009562) | Group: users (100)
Safe Mode: OFF
Disable Function:
_dyuweyrj4,_dyuweyrj4r,dl

name : exceptions.php
<?php declare(strict_types = 1);
// phpcs:ignoreFile PSR1.Classes.ClassDeclaration
namespace MailPoet\EmailEditor;
if (!defined('ABSPATH')) exit;
interface HttpAwareException {
 public function getHttpStatusCode(): int;
}
abstract class Exception extends \Exception {
 private $errors = [];
 final public function __construct(string $message = '', int $code = 0, \Throwable $previous = null) {
 parent::__construct($message, $code, $previous);
 }
 public static function create(\Throwable $previous = null) {
 return new static('', 0, $previous);
 }
 public function withMessage(string $message) {
 $this->message = $message;
 return $this;
 }
 public function withCode(int $code) {
 $this->code = $code;
 return $this;
 }
 public function withErrors(array $errors) {
 $this->errors = $errors;
 return $this;
 }
 public function withError(string $id, string $error) {
 $this->errors[$id] = $error;
 return $this;
 }
 public function getErrors(): array {
 return $this->errors;
 }
}
class RuntimeException extends Exception {}
class UnexpectedValueException extends RuntimeException implements HttpAwareException {
 public function getHttpStatusCode(): int {
 return 400;
 }
}
class AccessDeniedException extends UnexpectedValueException implements HttpAwareException {
 public function getHttpStatusCode(): int {
 return 403;
 }
}
class NotFoundException extends UnexpectedValueException implements HttpAwareException {
 public function getHttpStatusCode(): int {
 return 404;
 }
}
class ConflictException extends UnexpectedValueException implements HttpAwareException {
 public function getHttpStatusCode(): int {
 return 409;
 }
}
class InvalidStateException extends RuntimeException {}
class NewsletterProcessingException extends Exception {}
© 2026 GrazzMean-Shell