mirror of
https://github.com/OpenXE-org/OpenXE.git
synced 2025-04-21 11:43:11 +02:00
54 lines
1.9 KiB
PHP
54 lines
1.9 KiB
PHP
<?php
|
|
|
|
/**
|
|
* Copyright (C) 2015 Datto, Inc.
|
|
*
|
|
* This file is part of PHP JSON-RPC.
|
|
*
|
|
* PHP JSON-RPC is free software: you can redistribute it and/or modify
|
|
* it under the terms of the GNU Lesser General Public License, version 3,
|
|
* as published by the Free Software Foundation.
|
|
*
|
|
* PHP JSON-RPC is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
* GNU Lesser General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU Lesser General Public License
|
|
* along with PHP JSON-RPC. If not, see <http://www.gnu.org/licenses/>.
|
|
*
|
|
* @author Spencer Mortensen <smortensen@datto.com>
|
|
* @license http://www.gnu.org/licenses/lgpl-3.0.html LGPL-3.0
|
|
* @copyright 2015 Datto, Inc.
|
|
*/
|
|
|
|
namespace Datto\JsonRpc\Exceptions;
|
|
|
|
use Datto\JsonRpc\Responses\ErrorResponse;
|
|
|
|
/**
|
|
* If a method cannot be called (e.g. if the method doesn't exist, or is a
|
|
* private method), then you should throw a "MethodException".
|
|
*
|
|
* If the method is callable, but the user-supplied arguments are incompatible
|
|
* with the method's type signature, or an argument is invalid, then you should
|
|
* throw an "ArgumentException".
|
|
*
|
|
* If the method is callable, and the user-supplied arguments are valid, but an
|
|
* issue arose when the server-side application was evaluating the method, then
|
|
* you should throw an "ApplicationException".
|
|
*
|
|
* If you've extended this JSON-RPC 2.0 library, and an issue arose in your
|
|
* implementation of the JSON-RPC 2.0 specifications, then you should throw an
|
|
* "ImplementationException".
|
|
*
|
|
* @link http://www.jsonrpc.org/specification#error_object
|
|
*/
|
|
class MethodException extends Exception
|
|
{
|
|
public function __construct()
|
|
{
|
|
parent::__construct('Method not found', ErrorResponse::INVALID_METHOD);
|
|
}
|
|
}
|