UNPKG

pt.md

Version:

Library for working with https://pt.md

13 lines (10 loc) 230 B
const BaseError = require('../../error/base'); class MissingEndpoint extends BaseError { /** * @param {string} name */ constructor(name) { super(`Missing endpoint ${name}`); } } module.exports = MissingEndpoint;