16 lines
514 B
Go
16 lines
514 B
Go
package web
|
|
|
|
// HTTPError is returned in HTTP error responses.
|
|
type HTTPError struct {
|
|
Message string `json:"message" example:"invalid format"`
|
|
Error string `json:"error,omitempty" example:"<internal error message>"`
|
|
Data interface{} `json:"data,omitempty" swaggerignore:"true"`
|
|
}
|
|
|
|
// Error strings used for HTTPError.Message.
|
|
const (
|
|
APIErrorInvalidRequestFormat = "Invalid Request Format"
|
|
APIErrorInternalDatabase = "Internal Database Error"
|
|
APIErrorNotFound = "Not found"
|
|
)
|