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
|
||
|
}
|