1 |
|
2 |
|
3 |
|
4 |
|
5 |
|
6 |
|
7 |
|
8 | import { BaseException } from '@angular-devkit/core';
|
9 | export declare class SchematicsException extends BaseException {
|
10 | }
|
11 | export declare class FileDoesNotExistException extends BaseException {
|
12 | constructor(path: string);
|
13 | }
|
14 | export declare class FileAlreadyExistException extends BaseException {
|
15 | constructor(path: string);
|
16 | }
|
17 | export declare class ContentHasMutatedException extends BaseException {
|
18 | constructor(path: string);
|
19 | }
|
20 | export declare class InvalidUpdateRecordException extends BaseException {
|
21 | constructor();
|
22 | }
|
23 | export declare class MergeConflictException extends BaseException {
|
24 | constructor(path: string);
|
25 | }
|
26 | export declare class UnsuccessfulWorkflowExecution extends BaseException {
|
27 | constructor();
|
28 | }
|
29 | export declare class UnimplementedException extends BaseException {
|
30 | constructor();
|
31 | }
|