mirror of
https://github.com/ckaczor/azuredatastudio.git
synced 2026-03-25 22:30:29 -04:00
14 lines
679 B
TypeScript
14 lines
679 B
TypeScript
/*---------------------------------------------------------------------------------------------
|
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
* Licensed under the Source EULA. See License.txt in the project root for license information.
|
|
*--------------------------------------------------------------------------------------------*/
|
|
|
|
'use strict';
|
|
import { IErrorMessageService } from 'sql/parts/connection/common/connectionManagement';
|
|
import Severity from 'vs/base/common/severity';
|
|
|
|
export class ErrorMessageServiceStub implements IErrorMessageService {
|
|
_serviceBrand: any;
|
|
showDialog(severity: Severity, headerTitle: string, message: string): void {
|
|
}
|
|
} |