Update ChainableRunnables.kt

This commit is contained in:
bluefireoly
2020-10-17 14:59:25 +02:00
parent 47e328d7fc
commit c3f070c750

View File

@@ -18,7 +18,7 @@ abstract class ChainedRunnablePart<T, R>(
abstract fun <E : Exception> executeCatching(
@Suppress("UNCHECKED_CAST") exceptionClass: KClass<E> = Exception::class as KClass<E>,
exceptionHandler: ((E) -> Unit)? = null,
exceptionHandler: ((E) -> Unit)? = null
)
protected fun start(data: T) {