mirror of
https://github.com/yu-i-i/overleaf-cep.git
synced 2026-05-23 09:09:36 +02:00
Set Prettier's "trailingComma" setting to "es5" GitOrigin-RevId: 9f14150511929a855b27467ad17be6ab262fe5d5
10 lines
246 B
JavaScript
10 lines
246 B
JavaScript
const Errors = require('../Errors/Errors')
|
|
|
|
class InvalidEmailError extends Errors.BackwardCompatibleError {}
|
|
class InvalidPasswordError extends Errors.BackwardCompatibleError {}
|
|
|
|
module.exports = {
|
|
InvalidEmailError,
|
|
InvalidPasswordError,
|
|
}
|