* Portions created by the Initial Developer are Copyright (C) 2008-2025 * the Initial Developer. All Rights Reserved. * * Contributor(s): * Mark J Crane * Tim Fry */ /** * Description of SubscriberException * * @author Tim Fry */ class subscriber_exception extends \Exception { public $subscriber_id; public function __construct($subscriber_id, string $message = "", int $code = 0, ?\Throwable $previous = null) { parent::__construct($message, $code, $previous); $this->subscriber_id = $subscriber_id; } public function getSubscriberId() { return $this->subscriber_id; } }