frostfs-crypto/internal/error.go

8 lines
164 B
Go

package internal
// Error is a custom error
type Error string
// Error is an implementation of error interface
func (e Error) Error() string { return string(e) }