mirror of
https://github.com/yu-i-i/overleaf-cep.git
synced 2026-06-02 13:49:00 +02:00
c14467b87a
GitOrigin-RevId: c5abb64729530baecbee0eb589eaed39faa2ac56
7 lines
125 B
JavaScript
7 lines
125 B
JavaScript
export class NotFoundError extends Error {
|
|
constructor(message) {
|
|
super(message)
|
|
this.name = 'NotFoundError'
|
|
}
|
|
}
|