github.com/altipla-consulting/ravendb-go-client@v0.1.3/operation_exception_result.go (about)

     1  package ravendb
     2  
     3  // OperationExceptionResult represents an exception information from the server
     4  type OperationExceptionResult struct {
     5  	Type       string `json:"Type"`
     6  	Message    string `json:"Message"`
     7  	Error      string `json:"Error"`
     8  	StatusCode int    `json:"StatusCode"`
     9  }