mirror of
https://github.com/NotAShelf/goblin.git
synced 2024-12-02 09:47:17 +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)
|
|
}
|