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