@contract-case/case-plugin-base
Version:
Plugin framework for writing plugins for the ContractCase test framework
15 lines • 594 B
TypeScript
import type { LogLevelContext } from '../context/types';
/**
* Something went wrong in ContractCase internals.
*
* @remarks
* Use this when there is almost certainly a bug in the implementation of the contract case core or your plugin.
*
* If used during a plugin execution, please include the plugin name / bug reporting instructions in the message.
* @public
*/
export declare class CaseCoreError extends Error {
userFacingStackTrace: string;
constructor(message: string, context?: LogLevelContext, userFacingStackTrace?: string);
}
//# sourceMappingURL=CaseCoreError.d.ts.map