2010-06-01 14:38:56 +02:00
|
|
|
/* sbt -- Simple Build Tool
|
|
|
|
|
* Copyright 2010 Mark Harrah
|
|
|
|
|
*/
|
2010-05-31 03:14:18 +02:00
|
|
|
package sbt
|
|
|
|
|
|
2010-06-07 14:53:21 +02:00
|
|
|
import Incomplete.{Error, Value => IValue}
|
|
|
|
|
final case class Incomplete(tpe: IValue = Error, message: Option[String] = None, causes: Seq[Incomplete] = Nil, directCause: Option[Throwable] = None)
|
|
|
|
|
extends Exception(message.orNull, directCause.orNull)
|
|
|
|
|
|
|
|
|
|
object Incomplete extends Enumeration {
|
|
|
|
|
val Skipped, Error = Value
|
|
|
|
|
}
|