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