mirror of
https://github.com/overleaf/overleaf.git
synced 2024-10-31 21:21:03 -04:00
a6f05109a3
[misc] fix eslint violations for `no-var` GitOrigin-RevId: c52e82f3a8a993b8662cc5aa56e7b95ca3c55832
16 lines
421 B
JavaScript
16 lines
421 B
JavaScript
/* eslint-disable
|
|
no-proto,
|
|
no-unused-vars,
|
|
*/
|
|
// TODO: This file was created by bulk-decaffeinate.
|
|
// Fix any style issues and re-enable lint.
|
|
let Errors
|
|
function NotFoundError(message) {
|
|
const error = new Error(message)
|
|
error.name = 'NotFoundError'
|
|
error.__proto__ = NotFoundError.prototype
|
|
return error
|
|
}
|
|
NotFoundError.prototype.__proto__ = Error.prototype
|
|
|
|
module.exports = Errors = { NotFoundError }
|