forked from angular/angular-cli
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathexception.ts
51 lines (46 loc) · 1.38 KB
/
exception.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
/**
* @license
* Copyright Google LLC All Rights Reserved.
*
* Use of this source code is governed by an MIT-style license that can be
* found in the LICENSE file at https://angular.dev/license
*/
import { BaseException } from '@angular-devkit/core';
// Used by schematics to throw exceptions.
export class SchematicsException extends BaseException {}
// Exceptions
export class FileDoesNotExistException extends BaseException {
constructor(path: string) {
super(`Path "${path}" does not exist.`);
}
}
export class FileAlreadyExistException extends BaseException {
constructor(path: string) {
super(`Path "${path}" already exist.`);
}
}
export class ContentHasMutatedException extends BaseException {
constructor(path: string) {
super(`Content at path "${path}" has changed between the start and the end of an update.`);
}
}
export class InvalidUpdateRecordException extends BaseException {
constructor() {
super(`Invalid record instance.`);
}
}
export class MergeConflictException extends BaseException {
constructor(path: string) {
super(`A merge conflicted on path "${path}".`);
}
}
export class UnsuccessfulWorkflowExecution extends BaseException {
constructor() {
super('Workflow did not execute successfully.');
}
}
export class UnimplementedException extends BaseException {
constructor() {
super('This function is unimplemented.');
}
}