It's not stopping you from having circular referen...
# announcements
m
It's not stopping you from having circular reference.
Copy code
val ex1 = Exception("ex1")
        val ex2 = Exception("ex2", ex1)
        ex1.initCause(ex2)