import CustomError from '../../shared/exceptions/customError.js'; export default class InvalidCredentialIndexException extends CustomError { constructor(private index: string) { super(); this.message = `Invalid credentialIndex: ${this.index}`; } }