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

11 lines
151 B
Go
Raw Normal View History

2017-04-03 07:27:19 +00:00
package seelog
// Base struct for custom errors.
type baseError struct {
message string
}
func (be baseError) Error() string {
return be.message
}