forked from TrueCloudLab/frostfs-api-go
10 lines
166 B
Go
10 lines
166 B
Go
|
package internal
|
||
|
|
||
|
// Error is constant type error.
|
||
|
type Error string
|
||
|
|
||
|
// Error implementation of error interface.
|
||
|
func (e Error) Error() string {
|
||
|
return string(e)
|
||
|
}
|