UNPKG

891 BTypeScriptView Raw
1import { BaseError } from '@ionic/cli-framework';
2export declare class BaseException extends BaseError {
3 readonly name = "Exception";
4}
5export declare class FatalException extends BaseException {
6 message: string;
7 exitCode: number;
8 fatal: boolean;
9 constructor(message?: string, exitCode?: number);
10}
11export declare class BuildCLIProgramNotFoundException extends BaseException {
12}
13export declare class ServeCLIProgramNotFoundException extends BaseException {
14}
15export declare class SessionException extends BaseException {
16}
17export declare class RunnerException extends BaseException {
18}
19export declare class RunnerNotFoundException extends RunnerException {
20}
21export declare class IntegrationException extends BaseException {
22}
23export declare class IntegrationNotFoundException extends IntegrationException {
24}
25export declare class HookException extends BaseException {
26}