mirror of
https://github.com/dwaxweiler/connector-mobilizon
synced 2025-02-19 13:10:50 +01:00
13 lines
327 B
PHP
13 lines
327 B
PHP
<?php
|
|
namespace MobilizonConnector;
|
|
|
|
class GroupNotFoundException extends \Exception {
|
|
public function __construct($message, $code = 0, Throwable $previous = null) {
|
|
parent::__construct($message, $code, $previous);
|
|
}
|
|
|
|
public function __toString() {
|
|
return __CLASS__ . ": [{$this->code}]: {$this->message}\n";
|
|
}
|
|
}
|