mirror of
https://github.com/yu-i-i/overleaf-cep.git
synced 2026-05-25 10:10:08 +02:00
Promisify UserMembershipHandler and UserMembershipHandlerTests GitOrigin-RevId: bb33110ee750364754db53fb075a5700be003ecc
12 lines
266 B
JavaScript
12 lines
266 B
JavaScript
const OError = require('@overleaf/o-error')
|
|
|
|
class UserIsManagerError extends OError {}
|
|
class UserNotFoundError extends OError {}
|
|
class UserAlreadyAddedError extends OError {}
|
|
|
|
module.exports = {
|
|
UserIsManagerError,
|
|
UserNotFoundError,
|
|
UserAlreadyAddedError,
|
|
}
|