fc72884676
Change-Id: Ib69d9c85f7d27b83726f925d5a802c8e950c3a86
30 lines
854 B
Go
30 lines
854 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("Error events received on channel, errors are:\n%v", e.Errors)
|
|
}
|