airshipctl/pkg/events/errors.go
Kostiantyn Kalynovskyi d37f13b6cb Export error field in ErrEventReceived
This will allow to reuse the error in other packages and compare
it in assert.Equal unit-tests and similar

Change-Id: Iccc6df713cedb78f6e75f7fba8d317bfcc6e8e84
2020-08-15 14:27:15 -05:00

30 lines
876 B
Go

/*
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
https://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/
package events
import (
"fmt"
)
// ErrEventReceived returned for not implemented features
type ErrEventReceived struct {
Errors []error
}
func (e ErrEventReceived) Error() string {
// TODO make printing more readable here
return fmt.Sprintf("Applying of resources to kubernetes cluster has failed, errors are:\n%v", e.Errors)
}