We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1aa9888 commit 16a8b1dCopy full SHA for 16a8b1d
databricks-sdk-java/src/main/java/com/databricks/sdk/core/error/ApiErrorBody.java
@@ -24,6 +24,16 @@ public class ApiErrorBody {
24
25
public ApiErrorBody() {}
26
27
+ /**
28
+ * Constructs an ApiErrorBody from the given parameters.
29
+ *
30
+ * <p>The error details are converted to a list of ErrorDetail objects. This only supports the
31
+ * ErrorInfo type.
32
33
+ * @param errorCode The error code.
34
+ * @param message The error message.
35
+ * @param scimDetail The SCIM detail.
36
+ */
37
public ApiErrorBody(
38
@JsonProperty("error_code") String errorCode,
39
@JsonProperty("message") String message,
0 commit comments