UNPKG

mqrpc

Version:

💫 Easy RPC over RabbitMQ

19 lines (18 loc) • 544 B
import { SerializedError } from '../RpcServer/errors'; export declare class UnparseableContent extends Error { constructor(content: any); } export declare class UnknownReply extends Error { constructor(content: any); } export declare class ServerError extends Error { remoteErrorStack?: string; constructor(error: SerializedError); } export declare class ProcedureFailed extends Error { causeStack?: string; constructor(cause: SerializedError); } export declare class CallTerminated extends Error { constructor(); }