import { LedgerCustom, LedgerError, LedgerErrorReason } from '../common'; /** * Error thrown when a related record referenced in the received record .data. * doesn’t exist in the ledger database. */ export declare class RecordRelationNotFound extends LedgerError { /** * * @param detail error detail - message * @param custom custom data record to attach * additional info about the error */ constructor(detail: string, custom?: LedgerCustom); static REASON: LedgerErrorReason; }