krontab/src/commonTest/kotlin/com/insanusmokrassar/krontab/utils/FailJob.kt

9 lines
259 B
Kotlin

package com.insanusmokrassar.krontab.utils
import kotlinx.coroutines.*
fun CoroutineScope.createFailJob(forTimeMillis: Long) = launch {
delay(forTimeMillis)
throw IllegalStateException("This job must be completed at before this exception happen")
}