forked from TrueCloudLab/frostfs-api-go
28260eb2ff
closes #147 Signed-off-by: Evgeniy Kulikov <kim@nspcc.ru>
9 lines
166 B
Go
9 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)
|
|
}
|