1
0
Fork 0
mirror of https://github.com/ethauvin/kobalt.git synced 2025-04-26 00:17:11 -07:00

Better error.

This commit is contained in:
Cedric Beust 2015-11-21 02:50:24 -08:00
parent aab9c31c62
commit 9e87f2625f

View file

@ -35,7 +35,7 @@ class KobaltExecutor(name: String, threadCount: Int)
}
}
if (ex != null) {
error(if (ex.message != null) ex.message!! else ex.javaClass.toString())
error(ex.toString())
}
}
}