2021-11-16 18:15:56 +00:00
|
|
|
package apistatus
|
|
|
|
|
|
|
|
import (
|
2023-03-07 11:20:03 +00:00
|
|
|
"git.frostfs.info/TrueCloudLab/frostfs-api-go/v2/status"
|
2021-11-16 18:15:56 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
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
|
|
|
|
}
|