UNPKG

@gear-js/api

Version:

A JavaScript library that provides functionality to connect GEAR Component APIs.

10 lines (7 loc) 230 B
'use strict'; class RpcMethodNotSupportedError extends Error { constructor(methodName) { super(`RPC method '${methodName}' is not supported`); } } exports.RpcMethodNotSupportedError = RpcMethodNotSupportedError;