2025-04-24 13:11:28 +08:00

7 lines
125 B
JavaScript

export class NotFoundError extends Error {
constructor(message) {
super(message)
this.name = 'NotFoundError'
}
}