peridot/vendor/github.com/ory/hydra-client-go/models/json_error.go

66 lines
1.7 KiB
Go
Raw Normal View History

2022-07-07 20:11:50 +00:00
// Code generated by go-swagger; DO NOT EDIT.
package models
// This file was generated by the swagger tool.
// Editing this file might prove futile when you re-run the swagger generate command
import (
"context"
"github.com/go-openapi/strfmt"
"github.com/go-openapi/swag"
)
// JSONError Generic Error Response
//
// Error responses are sent when an error (e.g. unauthorized, bad request, ...) occurred.
//
// swagger:model jsonError
type JSONError struct {
// Name is the error name.
// Example: The requested resource could not be found
Error string `json:"error,omitempty"`
// Debug contains debug information. This is usually not available and has to be enabled.
// Example: The database adapter was unable to find the element
ErrorDebug string `json:"error_debug,omitempty"`
// Description contains further information on the nature of the error.
// Example: Object with ID 12345 does not exist
ErrorDescription string `json:"error_description,omitempty"`
// Code represents the error status code (404, 403, 401, ...).
// Example: 404
StatusCode int64 `json:"status_code,omitempty"`
}
// Validate validates this json error
func (m *JSONError) Validate(formats strfmt.Registry) error {
return nil
}
// ContextValidate validates this json error based on context it is used
func (m *JSONError) ContextValidate(ctx context.Context, formats strfmt.Registry) error {
return nil
}
// MarshalBinary interface implementation
func (m *JSONError) MarshalBinary() ([]byte, error) {
if m == nil {
return nil, nil
}
return swag.WriteJSON(m)
}
// UnmarshalBinary interface implementation
func (m *JSONError) UnmarshalBinary(b []byte) error {
var res JSONError
if err := swag.ReadJSON(b, &res); err != nil {
return err
}
*m = res
return nil
}