UNPKG

@sap_oss/wdio-qmate-service

Version:

[![REUSE status](https://api.reuse.software/badge/github.com/SAP/wdio-qmate-service)](https://api.reuse.software/info/github.com/SAP/wdio-qmate-service)[![Node.js CI](https://github.com/SAP/wdio-qmate-service/actions/workflows/node.js.yml/badge.svg)](http

14 lines (13 loc) 572 B
export interface IErrorHandler { logException(error: unknown | Error, customErrorMessage?: string): Promise<never>; } export declare class QmateError extends Error { constructor(message: string, displayStack: boolean); private _getFormattedStackTrace; } export default class ErrorHandler implements IErrorHandler { logException(errorObject: unknown | Error, customErrorMessage?: string, logStackTrace?: boolean): never; private _retrieveLastLevelFunctionNameFromStack; private _isThirdPartyModuleIncludedInStack; private _formatStackMessage; }