mirror of
https://github.com/vmware-tanzu/velero.git
synced 2026-09-25 17:34:17 +00:00
Switch to dep. Update the following: - azure-sdk-for-go to 10.2.1-beta - go-autorest to 8.1.1 - client-go to 4.0.0 Signed-off-by: Andy Goldstein <andy.goldstein@gmail.com>
32 lines
653 B
Go
32 lines
653 B
Go
package govalidator
|
|
|
|
// Errors is an array of multiple errors and conforms to the error interface.
|
|
type Errors []error
|
|
|
|
// Errors returns itself.
|
|
func (es Errors) Errors() []error {
|
|
return es
|
|
}
|
|
|
|
func (es Errors) Error() string {
|
|
var err string
|
|
for _, e := range es {
|
|
err += e.Error() + ";"
|
|
}
|
|
return err
|
|
}
|
|
|
|
// Error encapsulates a name, an error and whether there's a custom error message or not.
|
|
type Error struct {
|
|
Name string
|
|
Err error
|
|
CustomErrorMessageExists bool
|
|
}
|
|
|
|
func (e Error) Error() string {
|
|
if e.CustomErrorMessageExists {
|
|
return e.Err.Error()
|
|
}
|
|
return e.Name + ": " + e.Err.Error()
|
|
}
|