terraform/vendor/github.com/cihub/seelog/internals_baseerror.go

11 lines
151 B
Go

package seelog
// Base struct for custom errors.
type baseError struct {
message string
}
func (be baseError) Error() string {
return be.message
}