mirror of
https://github.com/microsoft/vscode.git
synced 2026-04-26 03:29:00 +01:00
split things up into api/node and api/electron-browser
This commit is contained in:
16
src/vs/workbench/api/electron-browser/mainThreadErrors.ts
Normal file
16
src/vs/workbench/api/electron-browser/mainThreadErrors.ts
Normal file
@@ -0,0 +1,16 @@
|
||||
/*---------------------------------------------------------------------------------------------
|
||||
* Copyright (c) Microsoft Corporation. All rights reserved.
|
||||
* Licensed under the MIT License. See License.txt in the project root for license information.
|
||||
*--------------------------------------------------------------------------------------------*/
|
||||
'use strict';
|
||||
|
||||
import * as errors from 'vs/base/common/errors';
|
||||
import { MainThreadErrorsShape } from '../node/extHost.protocol';
|
||||
|
||||
export class MainThreadErrors extends MainThreadErrorsShape {
|
||||
|
||||
public onUnexpectedExtHostError(err: any): void {
|
||||
errors.onUnexpectedError(err);
|
||||
}
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user