in sarif/src/main/java/com/jetbrains/qodana/sarif/model/Exception.java [144:173]
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append(Exception.class.getName()).append('@').append(Integer.toHexString(System.identityHashCode(this))).append('[');
sb.append("kind");
sb.append('=');
sb.append(((this.kind == null) ? "<null>" : this.kind));
sb.append(',');
sb.append("message");
sb.append('=');
sb.append(((this.message == null) ? "<null>" : this.message));
sb.append(',');
sb.append("stack");
sb.append('=');
sb.append(((this.stack == null) ? "<null>" : this.stack));
sb.append(',');
sb.append("innerExceptions");
sb.append('=');
sb.append(((this.innerExceptions == null) ? "<null>" : this.innerExceptions));
sb.append(',');
sb.append("properties");
sb.append('=');
sb.append(((this.properties == null) ? "<null>" : this.properties));
sb.append(',');
if (sb.charAt((sb.length() - 1)) == ',') {
sb.setCharAt((sb.length() - 1), ']');
} else {
sb.append(']');
}
return sb.toString();
}