4c779423f5
Signed-off-by: Pavel Karpy <p.karpy@yadro.com>
18 lines
387 B
Go
18 lines
387 B
Go
package apistatus
|
|
|
|
import (
|
|
"github.com/TrueCloudLab/frostfs-api-go/v2/status"
|
|
)
|
|
|
|
type unrecognizedStatusV2 struct {
|
|
v2 status.Status
|
|
}
|
|
|
|
func (x unrecognizedStatusV2) Error() string {
|
|
return errMessageStatusV2("unrecognized", x.v2.Message())
|
|
}
|
|
|
|
// implements local interface defined in FromStatusV2 func.
|
|
func (x *unrecognizedStatusV2) fromStatusV2(st *status.Status) {
|
|
x.v2 = *st
|
|
}
|