mirror of
https://github.com/balena-io/balena-cli.git
synced 2024-12-19 13:47:52 +00:00
a81c1971f1
Change-type: minor Signed-off-by: Cameron Diver <cameron@balena.io>
40 lines
950 B
TypeScript
40 lines
950 B
TypeScript
import * as _ from 'lodash';
|
|
import { TypedError } from 'typed-error';
|
|
|
|
export interface BuildFailure {
|
|
error: Error;
|
|
serviceName: string;
|
|
}
|
|
|
|
export class BuildError extends TypedError {
|
|
private failures: BuildFailure[];
|
|
|
|
public constructor(failures: BuildFailure[]) {
|
|
super('Build error');
|
|
|
|
this.failures = failures;
|
|
}
|
|
|
|
public toString(): string {
|
|
let str = 'Some services failed to build:\n';
|
|
_.each(this.failures, failure => {
|
|
str += `\t${failure.serviceName}: ${failure.error.message}\n`;
|
|
});
|
|
return str;
|
|
}
|
|
|
|
public getServiceError(serviceName: string): string {
|
|
const failure = _.find(this.failures, f => f.serviceName === serviceName);
|
|
if (failure == null) {
|
|
return 'Unknown build failure';
|
|
}
|
|
|
|
return failure.error.message;
|
|
}
|
|
}
|
|
|
|
export class DeviceAPIError extends TypedError {}
|
|
|
|
export class BadRequestDeviceAPIError extends DeviceAPIError {}
|
|
export class ServiceUnavailableAPIError extends DeviceAPIError {}
|