mirror of
https://github.com/overleaf/overleaf.git
synced 2024-11-07 20:31:06 -05:00
c14467b87a
GitOrigin-RevId: c5abb64729530baecbee0eb589eaed39faa2ac56
6 lines
125 B
JavaScript
6 lines
125 B
JavaScript
export class NotFoundError extends Error {
|
|
constructor(message) {
|
|
super(message)
|
|
this.name = 'NotFoundError'
|
|
}
|
|
}
|