in hot-reload-orchestration/src/main/kotlin/org/jetbrains/compose/reload/orchestration/OrchestrationMessage.kt [469:476]
override fun equals(other: Any?): Boolean {
if (this === other) return true
if (other !is UIException) return false
if (windowId != other.windowId) return false
if (message != other.message) return false
if (stacktrace != other.stacktrace) return false
return true
}