package exchange import "fmt" type errBadCurrency struct { symbol string } func (e errBadCurrency) Error() string { return fmt.Sprintf("unknown currency symbol %q", e.symbol) }