/* __ *\ ** ________ ___ / / ___ Scala Ant Tasks ** ** / __/ __// _ | / / / _ | (c) 2005-2009, LAMP/EPFL ** ** __\ \/ /__/ __ |/ /__/ __ | http://scala-lang.org/ ** ** /____/\___/_/ |_/____/_/ | | ** ** |/ ** \* */ // $Id: CompilationFailure.scala 17235 2009-03-03 18:43:32Z michelou $ package scala.tools.ant.sabbus case class CompilationFailure(message: String, cause: Exception) extends Exception(message, cause)