``` fun addChildInterceptor(interceptor: ChildInt...
# tornadofx
k
Copy code
fun addChildInterceptor(interceptor: ChildInterceptor) {

			try {
				childInterceptors.add(interceptor)
				throw Exception()
			} catch (ex: Exception) {
				println(ex.stackTrace)
			}
		}
??