File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -22,24 +22,24 @@ export interface WorkspaceRestartInfo {
22
22
export class NoRunningInstanceError extends Error {
23
23
code = 'NoRunningInstanceError' ;
24
24
constructor ( readonly workspaceId : string , readonly phase ?: string ) {
25
- super ( `Failed to connect to ${ workspaceId } Gitpod workspace, workspace not running: ${ phase } ` ) ;
26
- this . name = 'NoRunningInstanceError'
25
+ super ( `Failed to connect to Gitpod workspace, workspace not running: ${ phase } ` ) ;
26
+ this . name = 'NoRunningInstanceError' ;
27
27
}
28
28
}
29
29
30
30
export class NoSSHGatewayError extends Error {
31
31
code = 'NoSSHGatewayError' ;
32
32
constructor ( readonly host : string ) {
33
33
super ( `SSH gateway not configured for this Gitpod Host ${ host } ` ) ;
34
- this . name = 'NoSSHGatewayError'
34
+ this . name = 'NoSSHGatewayError' ;
35
35
}
36
36
}
37
37
38
38
export class NoExtensionIPCServerError extends Error {
39
39
code = 'NoExtensionIPCServer' ;
40
40
constructor ( ) {
41
41
super ( 'No Extension IPC Server running' ) ;
42
- this . name = 'NoExtensionIPCServerError'
42
+ this . name = 'NoExtensionIPCServerError' ;
43
43
}
44
44
}
45
45
You can’t perform that action at this time.
0 commit comments