export class UsernameUpdateFailedError extends Error { constructor(username: string) { super(`Could not update username to ${username}`); } } export class UsernameBlacklistedError extends Error { constructor(username: string) { super(`${username} is blacklisted.`); } }