This commit is contained in:
Mechiel Lukkien
2023-01-30 14:27:06 +01:00
commit cb229cb6cf
1256 changed files with 491723 additions and 0 deletions

19
vendor/github.com/mjl-/sherpa/codes.go generated vendored Normal file
View File

@ -0,0 +1,19 @@
package sherpa
// Errors generated by both clients and servers
const (
SherpaBadFunction = "sherpa:badFunction" // Function does not exist at server.
)
// Errors generated by clients
const (
SherpaBadResponse = "sherpa:badResponse" // Bad response from server, e.g. JSON response body could not be parsed.
SherpaHTTPError = "sherpa:http" // Unexpected http response status code from server.
SherpaNoAPI = "sherpa:noAPI" // No API was found at this URL.
)
// Errors generated by servers
const (
SherpaBadRequest = "sherpa:badRequest" // Error parsing JSON request body.
SherpaBadParams = "sherpa:badParams" // Wrong number of parameters in function call.
)