. /** * Class for a client exception (user error) * * @category Exception * @package GNUsocial * @author Evan Prodromou * @copyright 2008 StatusNet, Inc. * @license https://www.gnu.org/licenses/agpl.html GNU AGPL v3 or later */ defined('GNUSOCIAL') || die(); /** * Class for client exceptions * * Subclass of PHP Exception for user errors. * * @category Exception * @package GNUsocial * @author Evan Prodromou * @license https://www.gnu.org/licenses/agpl.html GNU AGPL v3 or later */ class ClientException extends Exception { public function __construct( string $message = '', int $code = 500, Throwable $previous = null ) { parent::__construct($message, $code, $previous); } // custom string representation of object public function __toString() { return __CLASS__ . ": [{$this->code}]: {$this->message}\n"; } }