(operation: string, collectionId: string)
| 109 | |
| 110 | export class CollectionInErrorStateError extends CollectionStateError { |
| 111 | constructor(operation: string, collectionId: string) { |
| 112 | super( |
| 113 | `Cannot perform ${operation} on collection "${collectionId}" - collection is in error state. Try calling cleanup() and restarting the collection.`, |
| 114 | ) |
| 115 | } |
| 116 | } |
| 117 | |
| 118 | export class InvalidCollectionStatusTransitionError extends CollectionStateError { |
nothing calls this directly
no outgoing calls
no test coverage detected