neneaX/multi-routing

View on GitHub
src/Adapters/JsonRpc/Response/Errors/MethodNotFound.php

Summary

Maintainability
A
0 mins
Test Coverage
<?php
namespace MultiRouting\Adapters\JsonRpc\Response\Errors;

use MultiRouting\Adapters\JsonRpc\Response\Error;

class MethodNotFound extends Error
{
    protected $code = Error::METHOD_NOT_FOUND_CODE;

    protected $message = 'The method does not exist / is not available.';

}