feat: add rest transport exception
This commit is contained in:
@@ -0,0 +1,57 @@
|
||||
<?php
|
||||
/**
|
||||
* Typed REST transport failure.
|
||||
*
|
||||
* @package WPContentSync
|
||||
*/
|
||||
|
||||
namespace WPContentSync\Transport;
|
||||
|
||||
final class RestTransportException extends \RuntimeException {
|
||||
/** @var array<string, mixed> */
|
||||
private array $context;
|
||||
|
||||
private string $failure_code;
|
||||
|
||||
/**
|
||||
* @param array<string, mixed> $context Failure context.
|
||||
*/
|
||||
private function __construct( string $failure_code, string $message, array $context = array() ) {
|
||||
parent::__construct( $message );
|
||||
|
||||
$this->failure_code = $failure_code;
|
||||
$this->context = $context;
|
||||
}
|
||||
|
||||
/**
|
||||
* @param array<string, mixed> $context Failure context.
|
||||
*/
|
||||
public static function connectionFailed( string $message, array $context = array() ): self {
|
||||
return new self( 'connection_failed', $message, $context );
|
||||
}
|
||||
|
||||
/**
|
||||
* @param array<string, mixed> $context Failure context.
|
||||
*/
|
||||
public static function authenticationFailed( string $message, array $context = array() ): self {
|
||||
return new self( 'authentication_failed', $message, $context );
|
||||
}
|
||||
|
||||
/**
|
||||
* @param array<string, mixed> $context Failure context.
|
||||
*/
|
||||
public static function remoteRejected( string $message, array $context = array() ): self {
|
||||
return new self( 'remote_rejected', $message, $context );
|
||||
}
|
||||
|
||||
public function failureCode(): string {
|
||||
return $this->failure_code;
|
||||
}
|
||||
|
||||
/**
|
||||
* @return array<string, mixed>
|
||||
*/
|
||||
public function context(): array {
|
||||
return $this->context;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user