UNPKG

1.02 kBTypeScriptView Raw
1/**
2 * @license
3 * Copyright Google LLC All Rights Reserved.
4 *
5 * Use of this source code is governed by an MIT-style license that can be
6 * found in the LICENSE file at https://angular.io/license
7 */
8import { BaseException } from '@angular-devkit/core';
9export declare class SchematicsException extends BaseException {
10}
11export declare class FileDoesNotExistException extends BaseException {
12 constructor(path: string);
13}
14export declare class FileAlreadyExistException extends BaseException {
15 constructor(path: string);
16}
17export declare class ContentHasMutatedException extends BaseException {
18 constructor(path: string);
19}
20export declare class InvalidUpdateRecordException extends BaseException {
21 constructor();
22}
23export declare class MergeConflictException extends BaseException {
24 constructor(path: string);
25}
26export declare class UnsuccessfulWorkflowExecution extends BaseException {
27 constructor();
28}
29export declare class UnimplementedException extends BaseException {
30 constructor();
31}