sbt.Incomplete
See theIncomplete companion object
final case class Incomplete(node: Option[AnyRef], tpe: Value, message: Option[String], causes: Seq[Incomplete], directCause: Option[Throwable]) extends Exception, UnprintableException
Describes why a task did not complete.
Value parameters
- causes
-
a list of incompletions that prevented
node
from completing - directCause
-
the exception that caused
node
to not complete - message
-
an optional error message describing this incompletion
- node
-
the task that did not complete that is described by this Incomplete instance
- tpe
-
whether the task was incomplete because of an error or because it was skipped. Only Error is actually used and Skipped may be removed in the future.
Attributes
- Companion
- object
- Graph
-
- Supertypes
-
trait Producttrait Equalstrait UnprintableExceptionclass Exceptionclass Throwabletrait Serializableclass Objecttrait Matchableclass Any
Members list
In this article