From d7940cf9470ee8377cf6484f4a20869c62d48685 Mon Sep 17 00:00:00 2001 From: winter Date: Tue, 14 Jan 2025 17:04:57 +0000 Subject: don't retry pushing to an instance with no push endpoint --- Digitigrade/Exception/EndpointMissingException.php | 23 ++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 Digitigrade/Exception/EndpointMissingException.php (limited to 'Digitigrade/Exception') diff --git a/Digitigrade/Exception/EndpointMissingException.php b/Digitigrade/Exception/EndpointMissingException.php new file mode 100644 index 0000000..b347838 --- /dev/null +++ b/Digitigrade/Exception/EndpointMissingException.php @@ -0,0 +1,23 @@ +domain has no $endpointName endpoint", previous: $previous); + $this->instance = $instance; + $this->endpointName = $endpointName; + } + + public function getInstance(): Instance { + return $this->instance; + } + + public function getEndpointName(): string { + return $this->endpointName; + } +} \ No newline at end of file -- cgit v1.3