UNPKG

544 BTypeScriptView Raw
1/** @module refer */
2import { InternalException } from '../errors/InternalException';
3/**
4 * Error when required component dependency cannot be found.
5 */
6export declare class ReferenceException extends InternalException {
7 /**
8 * Creates an error instance and assigns its values.
9 *
10 * @param correlation_id (optional) a unique transaction id to trace execution through call chain.
11 * @param locator the locator to find reference to dependent component.
12 */
13 constructor(correlationId: string, locator: any);
14}