@chimoney.io/iaas-k8s-deployment
Version:
Kubernetes Infrastructure as a Service deployment package for streamlined multi-cloud environments
15 lines • 590 B
TypeScript
import type { FieldValidationError } from "../../types/index.js";
export declare class DeploymentError extends Error {
code: string;
details?: any | undefined;
constructor(message: string, code: string, details?: any | undefined);
}
export declare class ConfigValidationError extends Error {
errors: FieldValidationError[];
constructor(message: string, errors: FieldValidationError[]);
}
export declare class RollbackError extends Error {
originalError: Error;
constructor(message: string, originalError: Error);
}
//# sourceMappingURL=deployment-errors.d.ts.map