mirror of
https://github.com/overleaf/overleaf.git
synced 2025-04-27 06:54:07 +00:00
* [project-history] add resync for project structure only * [project-history] block resyncProjectStructureOnly that update docs * [project-history] tweak test description GitOrigin-RevId: ce2749566c36e04dab21c26dd60dd75d93c0d4c0
11 lines
509 B
JavaScript
11 lines
509 B
JavaScript
import OError from '@overleaf/o-error'
|
|
|
|
export class NotFoundError extends OError {}
|
|
export class BadRequestError extends OError {}
|
|
export class SyncError extends OError {}
|
|
export class OpsOutOfOrderError extends OError {}
|
|
export class InconsistentChunkError extends OError {}
|
|
export class UpdateWithUnknownFormatError extends OError {}
|
|
export class UnexpectedOpTypeError extends OError {}
|
|
export class TooManyRequestsError extends OError {}
|
|
export class NeedFullProjectStructureResyncError extends OError {}
|