mirror of
https://github.com/LukeHagar/plexterraform.git
synced 2025-12-10 04:21:03 +00:00
ci: regenerated with OpenAPI Doc , Speakeasy CLI 1.215.1
This commit is contained in:
35
internal/sdk/models/errors/sdkerror.go
Normal file
35
internal/sdk/models/errors/sdkerror.go
Normal file
@@ -0,0 +1,35 @@
|
||||
// Code generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT.
|
||||
|
||||
package errors
|
||||
|
||||
import (
|
||||
"fmt"
|
||||
"net/http"
|
||||
)
|
||||
|
||||
type SDKError struct {
|
||||
Message string
|
||||
StatusCode int
|
||||
Body string
|
||||
RawResponse *http.Response
|
||||
}
|
||||
|
||||
var _ error = &SDKError{}
|
||||
|
||||
func NewSDKError(message string, statusCode int, body string, httpRes *http.Response) *SDKError {
|
||||
return &SDKError{
|
||||
Message: message,
|
||||
StatusCode: statusCode,
|
||||
Body: body,
|
||||
RawResponse: httpRes,
|
||||
}
|
||||
}
|
||||
|
||||
func (e *SDKError) Error() string {
|
||||
body := ""
|
||||
if len(e.Body) > 0 {
|
||||
body = fmt.Sprintf("\n%s", e.Body)
|
||||
}
|
||||
|
||||
return fmt.Sprintf("%s: Status %d%s", e.Message, e.StatusCode, body)
|
||||
}
|
||||
Reference in New Issue
Block a user