chrly/db/commons.go

10 lines
141 B
Go

package db
type ParamRequired struct {
Param string
}
func (e ParamRequired) Error() string {
return "Required parameter not provided"
}