record Error()

in src/main/java/org/jetbrains/nativecerts/mac/CoreFoundationExt.java [55:71]


    record Error(
            @NotNull
            String domain,
            @NotNull
            Long code,
            @NotNull
            String description
    ) {
        @Override
        public @NotNull String toString() {
            return "Error{" +
                   "domain=" + domain +
                   ", code=" + code +
                   ", description='" + description + '\'' +
                   '}';
        }
    }