forked from TrueCloudLab/distribution
15 lines
189 B
Go
15 lines
189 B
Go
package v1
|
|
|
|
import (
|
|
"fmt"
|
|
)
|
|
|
|
type Error struct {
|
|
StatusCode int
|
|
Status string
|
|
msg string
|
|
}
|
|
|
|
func (e Error) Error() string {
|
|
return fmt.Sprintf("%s: %s", e.Status, e.msg)
|
|
}
|