export class UserError extends Error { constructor( message: string, public readonly tryInstead: string|null = null ) { super(message); } }