13 lines
180 B
Go
13 lines
180 B
Go
package syserrors
|
|
|
|
type NoUserError struct {
|
|
UnKnowError
|
|
}
|
|
|
|
func (err NoUserError) Error() string {
|
|
return "请登陆系统"
|
|
}
|
|
|
|
func (err NoUserError) Code() int {
|
|
return 1001
|
|
} |