main.wisp.task.exception.FailedTaskException.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 failed.
*
* If a task returns [Status.FAILED], it is mapped to this exception and thrown.
*/
class FailedTaskException : Exception()