main.wisp.task.exception.TaskAlreadyExistsException.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
/**
* Thrown if an attempt to create a [RepeatedTask] that already exists with the name supplied.
*/
class TaskAlreadyExistsException(taskName: String) :
Exception("Repeated Task with name: $taskName already exists!")