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 d247d3f commit 5288e56Copy full SHA for 5288e56
utbot-summary/src/main/kotlin/org/utbot/summary/comment/CustomJavaDocCommentBuilder.kt
@@ -72,7 +72,7 @@ class CustomJavaDocCommentBuilder(
72
val exceptionThrow: String? = if (thrownException == null) {
73
traceTag.result.exceptionOrNull()?.let { it::class.qualifiedName }
74
} else {
75
- val exceptionName = thrownException.javaClass.simpleName
+ val exceptionName = thrownException.javaClass.name
76
val reason = findExceptionReason(currentMethod, thrownException)
77
"{@link $exceptionName} $reason"
78
}
0 commit comments