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