blob: 13036e5e8f6b01a238c8dea73a2cc96ebd700db1 [file] [log] [blame]
class NotFoundError extends Error {
constructor() {
super();
this.name = 'NotFoundError';
}
}
export default NotFoundError;