1 package encoding 2 3 type encodingError string 4 5 func (e encodingError) Error() string { 6 return string(e) 7 } 8
View as plain text