(from: string, to: string, collectionId: string)
| 117 | |
| 118 | export class InvalidCollectionStatusTransitionError extends CollectionStateError { |
| 119 | constructor(from: string, to: string, collectionId: string) { |
| 120 | super( |
| 121 | `Invalid collection status transition from "${from}" to "${to}" for collection "${collectionId}"`, |
| 122 | ) |
| 123 | } |
| 124 | } |
| 125 | |
| 126 | export class CollectionIsInErrorStateError extends CollectionStateError { |
nothing calls this directly
no outgoing calls
no test coverage detected