import CustomError from '../../shared/exceptions/customError.js'; export class InvalidStatusListCredentialException extends CustomError { constructor(statusListCredential: string) { super(); this.message = `[${this.constructor.name}] Unable to get Status List Credential. Url tried: ${statusListCredential}`; } }