UNPKG

aria2

Version:

Library and for aria2, "The next generation download utility."

11 lines (9 loc) 228 B
"use strict"; module.exports = class JSONRPCError extends Error { constructor({ message, code, data }) { super(message); this.code = code; if (data) this.data = data; this.name = this.constructor.name; } };