@neume-network/core
Version:
neume network is a community-owned network to scale music and web3 - connecting Artist DAOs, Tokens, NFTs and whatever comes next.
18 lines (15 loc) • 369 B
JavaScript
// @format
//
// Sources becoming inspired about finding appropriate error names:
//
// - https://docs.python.org/3/library/exceptions.html
//
export class NotFoundError extends Error {
constructor(...params) {
super(...params);
if (Error.captureStackTrace) {
Error.captureStackTrace(this, NotFoundError);
}
this.name = "NotFoundError";
}
}