pip-services3-commons-node
Version:
Portable abstractions and patterns for Pip.Services in Node.js
21 lines (17 loc) • 674 B
text/typescript
/** @module refer */
import { InternalException } from '../errors/InternalException';
/**
* Error when required component dependency cannot be found.
*/
export class ReferenceException extends InternalException {
/**
* Creates an error instance and assigns its values.
*
* @param correlation_id (optional) a unique transaction id to trace execution through call chain.
* @param locator the locator to find reference to dependent component.
*/
public constructor(correlationId: string, locator: any) {
super(correlationId, "REF_ERROR", "Failed to obtain reference to " + locator);
this.withDetails("locator", locator);
}
}