errInvalidArgument - Invalid argument response.
(message string)
| 275 | |
| 276 | // errInvalidArgument - Invalid argument response. |
| 277 | func errInvalidArgument(message string) error { |
| 278 | return ErrorResponse{ |
| 279 | StatusCode: http.StatusBadRequest, |
| 280 | Code: InvalidArgument, |
| 281 | Message: message, |
| 282 | RequestID: "minio", |
| 283 | } |
| 284 | } |
| 285 | |
| 286 | // errAPINotSupported - API not supported response |
| 287 | // The specified API call is not supported |
no outgoing calls