mirror of
https://github.com/NotAShelf/goblin.git
synced 2025-02-23 11:58:47 +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)
|
|
}
|