forked from microsoft/code-push
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcode-push-error.ts
More file actions
34 lines (30 loc) · 966 Bytes
/
Copy pathcode-push-error.ts
File metadata and controls
34 lines (30 loc) · 966 Bytes
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
export class CodePushError extends Error {
constructor(message: string) {
super(message);
Object.setPrototypeOf(this, CodePushError.prototype);
}
}
export class CodePushHttpError extends CodePushError {
constructor(message: string) {
super(message);
Object.setPrototypeOf(this, CodePushHttpError.prototype);
}
}
export class CodePushDeployStatusError extends CodePushError {
constructor(message: string) {
super(message);
Object.setPrototypeOf(this, CodePushDeployStatusError.prototype);
}
}
export class CodePushPackageError extends CodePushError {
constructor(message: string) {
super(message);
Object.setPrototypeOf(this, CodePushPackageError.prototype);
}
}
export class CodePushUnauthorizedError extends CodePushError {
constructor(message: string) {
super(message);
Object.setPrototypeOf(this, CodePushUnauthorizedError.prototype);
}
}