gtsocial-umbx

Unnamed repository; edit this file 'description' to name the repository.
Log | Files | Refs | README | LICENSE

error.go (105B)


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