mirror of
https://github.com/overleaf/overleaf.git
synced 2024-11-21 20:47:08 -05:00
38 lines
882 B
JavaScript
38 lines
882 B
JavaScript
|
const OError = require('@overleaf/o-error')
|
||
|
|
||
|
class UnprocessableError extends OError {}
|
||
|
|
||
|
class ApplyError extends UnprocessableError {
|
||
|
constructor(message, operation, operand) {
|
||
|
super(message, { operation, operand })
|
||
|
this.operation = operation
|
||
|
this.operand = operand
|
||
|
}
|
||
|
}
|
||
|
|
||
|
class InvalidInsertionError extends UnprocessableError {
|
||
|
constructor(str, operation) {
|
||
|
super('inserted text contains non BMP characters', { str, operation })
|
||
|
this.str = str
|
||
|
this.operation = operation
|
||
|
}
|
||
|
}
|
||
|
|
||
|
class TooLongError extends UnprocessableError {
|
||
|
constructor(operation, resultLength) {
|
||
|
super(`resulting string would be too long: ${resultLength}`, {
|
||
|
operation,
|
||
|
resultLength,
|
||
|
})
|
||
|
this.operation = operation
|
||
|
this.resultLength = resultLength
|
||
|
}
|
||
|
}
|
||
|
|
||
|
module.exports = {
|
||
|
UnprocessableError,
|
||
|
ApplyError,
|
||
|
InvalidInsertionError,
|
||
|
TooLongError,
|
||
|
}
|