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 {
2222export class NoRunningInstanceError extends Error {
2323 code = 'NoRunningInstanceError' ;
2424 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' ;
2727 }
2828}
2929
3030export class NoSSHGatewayError extends Error {
3131 code = 'NoSSHGatewayError' ;
3232 constructor ( readonly host : string ) {
3333 super ( `SSH gateway not configured for this Gitpod Host ${ host } ` ) ;
34- this . name = 'NoSSHGatewayError'
34+ this . name = 'NoSSHGatewayError' ;
3535 }
3636}
3737
3838export class NoExtensionIPCServerError extends Error {
3939 code = 'NoExtensionIPCServer' ;
4040 constructor ( ) {
4141 super ( 'No Extension IPC Server running' ) ;
42- this . name = 'NoExtensionIPCServerError'
42+ this . name = 'NoExtensionIPCServerError' ;
4343 }
4444}
4545
You can’t perform that action at this time.
0 commit comments