mirror of
https://github.com/ouqiang/gocron.git
synced 2024-04-21 12:31:58 +00:00
11 lines
151 B
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
|
|
}
|