1package seelog
2
3// Base struct for custom errors.
4type baseError struct {
5	message string
6}
7
8func (be baseError) Error() string {
9	return be.message
10}
11