blob: 7403e499119096b974f57e78b160ec55f2e60da5 [file] [log] [blame]
Don Newton379ae252019-04-01 12:17:06 -04001package stringprep
2
3import "fmt"
4
5// Error describes problems encountered during stringprep, including what rune
6// was problematic.
7type Error struct {
8 Msg string
9 Rune rune
10}
11
12func (e Error) Error() string {
13 return fmt.Sprintf("%s (rune: '\\u%04x')", e.Msg, e.Rune)
14}