mirror of
https://github.com/overleaf/overleaf.git
synced 2024-12-02 02:02:31 -05:00
4b308553be
[misc] move the linting setup to the root of the monorepo GitOrigin-RevId: 1633e2a58598add0b727738cd3bfba0ab7bae781
15 lines
340 B
JavaScript
15 lines
340 B
JavaScript
const OError = require('@overleaf/o-error')
|
|
|
|
class NotFoundError extends OError {}
|
|
class WriteError extends OError {}
|
|
class ReadError extends OError {}
|
|
class SettingsError extends OError {}
|
|
class NotImplementedError extends OError {}
|
|
|
|
module.exports = {
|
|
NotFoundError,
|
|
WriteError,
|
|
ReadError,
|
|
SettingsError,
|
|
NotImplementedError,
|
|
}
|