import CustomError from '../../shared/exceptions/customError.js'; export class InvalidDidMethodException extends CustomError { constructor() { super(); this.message = `[${this.constructor.name}] Did method not supported.`; } }