mirror of https://github.com/sbt/sbt.git
10 lines
384 B
Scala
10 lines
384 B
Scala
/* sbt -- Simple Build Tool
|
|
* Copyright 2009 Mark Harrah
|
|
*/
|
|
package xsbt.boot
|
|
|
|
// The exception to use when an error occurs at the launcher level (and not a nested exception).
|
|
// This indicates overrides toString because the exception class name is not needed to understand
|
|
// the error message.
|
|
class BootException(override val toString: String) extends RuntimeException(toString)
|