main.wisp.task.exception.NoWorkForTaskException.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of wisp-task Show documentation
Show all versions of wisp-task Show documentation
a module containing task related helpers
package wisp.task.exception
import wisp.task.Status
/**
* Can be thrown by a task to indicate it has no work to do at this time.
*
* If a task returns [Status.NO_WORK], it is mapped to this exception and thrown.
*/
class NoWorkForTaskException : Exception()