| 27 | } |
| 28 | |
| 29 | interface ContainerErrorInfo { |
| 30 | description: string; |
| 31 | originalError?: any; |
| 32 | manageContainer?: boolean; |
| 33 | params?: ResolverParameters; |
| 34 | containerId?: string; |
| 35 | dockerParams?: any; // TODO |
| 36 | containerProperties?: ContainerProperties; |
| 37 | actions?: ContainerErrorAction[]; |
| 38 | data?: ContainerErrorData; |
| 39 | } |
| 40 | |
| 41 | export class ContainerError extends Error implements ContainerErrorInfo { |
| 42 | description!: string; |
nothing calls this directly
no outgoing calls
no test coverage detected