1
0
mirror of https://github.com/dwaxweiler/connector-mobilizon synced 2025-02-19 13:10:50 +01:00
connector-wordpress/source/includes/exceptions/GroupNotFoundException.php
2024-04-05 23:26:11 +02:00

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";
}
}