2021-11-16 18:15:56 +00:00
|
|
|
package apistatus
|
|
|
|
|
|
|
|
import (
|
|
|
|
"github.com/nspcc-dev/neofs-api-go/v2/status"
|
|
|
|
)
|
|
|
|
|
|
|
|
type unrecognizedStatusV2 struct {
|
|
|
|
v2 status.Status
|
|
|
|
}
|
|
|
|
|
|
|
|
func (x unrecognizedStatusV2) Error() string {
|
|
|
|
return errMessageStatusV2("unrecognized", x.v2.Message())
|
|
|
|
}
|
|
|
|
|
2022-02-01 11:55:21 +00:00
|
|
|
// implements local interface defined in FromStatusV2 func.
|
2021-11-16 18:15:56 +00:00
|
|
|
func (x *unrecognizedStatusV2) fromStatusV2(st *status.Status) {
|
|
|
|
x.v2 = *st
|
|
|
|
}
|