芝麻web文件管理V1.00
编辑当前文件:/home/projzpbv/www/wp-content/plugins/mailpoet/vendor/mailpoet/email-editor/src/exceptions.php
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 {}