-
Notifications
You must be signed in to change notification settings - Fork 11.9k
Expand file tree
/
Copy pathexception.ts
More file actions
87 lines (78 loc) · 2.17 KB
/
Copy pathexception.ts
File metadata and controls
87 lines (78 loc) · 2.17 KB
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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
/**
* @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.io/license
*/
export class BaseException extends Error {
constructor(message = '') {
super(message);
}
}
export class UnknownException extends BaseException {
constructor(message: string) {
super(message);
}
}
// 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 PathIsDirectoryException extends BaseException {
constructor(path: string) {
super(`Path "${path}" is a directory.`);
}
}
export class PathIsFileException extends BaseException {
constructor(path: string) {
super(`Path "${path}" is a file.`);
}
}
/**
* @deprecated since version 14. Use the same symbol from `@angular-devkit/schematics`.
*/
export class ContentHasMutatedException extends BaseException {
constructor(path: string) {
super(`Content at path "${path}" has changed between the start and the end of an update.`);
}
}
/**
* @deprecated since version 14. Use the same symbol from `@angular-devkit/schematics`.
*/
export class InvalidUpdateRecordException extends BaseException {
constructor() {
super(`Invalid record instance.`);
}
}
/**
* @deprecated since version 14. Use the same symbol from `@angular-devkit/schematics`.
*/
export class MergeConflictException extends BaseException {
constructor(path: string) {
super(`A merge conflicted on path "${path}".`);
}
}
/**
* @deprecated since version 14. Create a custom exception implementation instead.
*/
export class UnimplementedException extends BaseException {
constructor() {
super('This function is unimplemented.');
}
}
/**
* @deprecated since version 14. Create a custom exception implementation instead.
*/
export class UnsupportedPlatformException extends BaseException {
constructor() {
super('This platform is not supported by this code path.');
}
}