summaryrefslogtreecommitdiff
path: root/src/compiler
diff options
context:
space:
mode:
authorBurak Emir <emir@epfl.ch>2006-02-22 10:01:31 +0000
committerBurak Emir <emir@epfl.ch>2006-02-22 10:01:31 +0000
commit2526f54f64b328debdfccf23d3c2a52189d02da9 (patch)
treeed1a139df57a8c477d397adeec87919bd150c0c1 /src/compiler
parentacdffcce39b1544e5f569e3db9583221e6370cbc (diff)
downloadscala-2526f54f64b328debdfccf23d3c2a52189d02da9.tar.gz
scala-2526f54f64b328debdfccf23d3c2a52189d02da9.tar.bz2
scala-2526f54f64b328debdfccf23d3c2a52189d02da9.zip
extends Exception(msg) instead of Exception()
Diffstat (limited to 'src/compiler')
-rw-r--r--src/compiler/scala/tools/nsc/FatalError.scala2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/compiler/scala/tools/nsc/FatalError.scala b/src/compiler/scala/tools/nsc/FatalError.scala
index aa849fa5d0..2abb503141 100644
--- a/src/compiler/scala/tools/nsc/FatalError.scala
+++ b/src/compiler/scala/tools/nsc/FatalError.scala
@@ -5,4 +5,4 @@
// $Id$
package scala.tools.nsc;
-case class FatalError(msg: String) extends Exception;
+case class FatalError(msg: String) extends Exception(msg);