UNPKG

open-music-api-node

Version:
11 lines (8 loc) 211 B
const ClientError = require('./ClientError'); class NotFoundError extends ClientError { constructor(message) { super(message, 404); this.name = 'NotFoundError'; } } module.exports = NotFoundError;