mirror of
https://github.com/spf13/viper
synced 2024-11-04 20:27:02 +00:00
7 lines
105 B
Go
7 lines
105 B
Go
package encoding
|
|
|
|
type encodingError string
|
|
|
|
func (e encodingError) Error() string {
|
|
return string(e)
|
|
}
|