ripple-api/app/v1/errors.go

22 lines
687 B
Go
Raw Normal View History

2016-04-03 17:59:27 +00:00
package v1
import (
2016-04-05 20:22:13 +00:00
"strings"
2016-04-19 14:07:27 +00:00
"git.zxq.co/ripple/rippleapi/common"
2016-04-03 17:59:27 +00:00
)
// Boilerplate errors
var (
2016-04-16 16:05:24 +00:00
Err500 = common.SimpleResponse(500, "An error occurred. Trying again may work. If it doesn't, yell at this Ripple instance admin and tell them to fix the API.")
ErrBadJSON = common.SimpleResponse(400, "Your JSON for this request is invalid.")
2016-04-03 17:59:27 +00:00
)
2016-04-05 20:22:13 +00:00
// ErrMissingField generates a response to a request when some fields in the JSON are missing.
2016-04-16 16:05:24 +00:00
func ErrMissingField(missingFields ...string) common.CodeMessager {
return common.ResponseBase{
2016-04-05 20:22:13 +00:00
Code: 422, // http://stackoverflow.com/a/10323055/5328069
Message: "Missing fields: " + strings.Join(missingFields, ", ") + ".",
}
}