import CustomError from '../../shared/exceptions/customError.js'; export class InvalidDidDocumentException extends CustomError { constructor(did: string) { super(); this.message = `[${this.constructor.name}] Unable to get didDocument for did: ${did}`; } }