mirror of
https://github.com/ckaczor/azuredatastudio.git
synced 2026-01-15 17:22:25 -05:00
* Merge from vscode e388c734f30757875976c7e326d6cfeee77710de * fix yarn lcoks * remove small issue
28 lines
1003 B
TypeScript
28 lines
1003 B
TypeScript
/*---------------------------------------------------------------------------------------------
|
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
* Licensed under the Source EULA. See License.txt in the project root for license information.
|
|
*--------------------------------------------------------------------------------------------*/
|
|
|
|
import { SerializedError, onUnexpectedError } from 'vs/base/common/errors';
|
|
import { extHostNamedCustomer } from 'vs/workbench/api/common/extHostCustomers';
|
|
import { MainContext, MainThreadErrorsShape } from 'vs/workbench/api/common/extHost.protocol';
|
|
|
|
@extHostNamedCustomer(MainContext.MainThreadErrors)
|
|
export class MainThreadErrors implements MainThreadErrorsShape {
|
|
|
|
dispose(): void {
|
|
//
|
|
}
|
|
|
|
$onUnexpectedError(err: any | SerializedError): void {
|
|
if (err && err.$isError) {
|
|
const { name, message, stack } = err;
|
|
err = new Error();
|
|
err.message = message;
|
|
err.name = name;
|
|
err.stack = stack;
|
|
}
|
|
onUnexpectedError(err);
|
|
}
|
|
}
|