mirror of
https://github.com/elyby/chrly.git
synced 2024-11-15 01:36:17 +05:30
10 lines
141 B
Go
10 lines
141 B
Go
|
package db
|
||
|
|
||
|
type ParamRequired struct {
|
||
|
Param string
|
||
|
}
|
||
|
|
||
|
func (e ParamRequired) Error() string {
|
||
|
return "Required parameter not provided"
|
||
|
}
|