mirror of
https://github.com/Luzifer/nginx-sso.git
synced 2024-12-20 21:01:17 +00:00
10 lines
352 B
Go
10 lines
352 B
Go
|
package crowd
|
||
|
|
||
|
// Error represents a error response from Crowd.
|
||
|
// Error reasons are documented at https://developer.atlassian.com/display/CROWDDEV/Using+the+Crowd+REST+APIs#UsingtheCrowdRESTAPIs-HTTPResponseCodesandErrorResponses
|
||
|
type Error struct {
|
||
|
XMLName struct{} `xml:"error"`
|
||
|
Reason string `xml:"reason"`
|
||
|
Message string `xml:"message"`
|
||
|
}
|