marmotte is a modern gopher server.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
marmotte/gopher/errorcodes.go

12 lines
311 B

package gopher
type GopherErrorCode string
const GopherErrorNoError GopherErrorCode = "00"
const GopherErrorSelectorNotFound GopherErrorCode = "10"
const GopherErrorWrongPermissions GopherErrorCode = "20"
const GopherErrorDataRetrieval GopherErrorCode = "30"
type GopherErrorInfo struct {
Selector string
}