damian
catch
inline fun <T, E : Throwable> tryy(body: () -> T): T? = try { body() } catch (e: E) { null }