mirror of
https://github.com/yu-i-i/overleaf-cep.git
synced 2025-07-27 08:00:06 +02:00
6 lines
125 B
JavaScript
6 lines
125 B
JavaScript
export class NotFoundError extends Error {
|
|
constructor(message) {
|
|
super(message)
|
|
this.name = 'NotFoundError'
|
|
}
|
|
}
|