summaryrefslogtreecommitdiff
path: root/src/compiler/scala/tools/nsc/backend/icode/analysis/LubException.scala
blob: 0474d12a8b6cfba76767714ee0e745d433d61cd6 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
/* NSC -- new Scala compiler
 * Copyright 2005-2010 LAMP/EPFL
 * @author  Martin Odersky
 */

// $Id$

package scala.tools.nsc
package backend.icode.analysis

class LubException(a: Any, b: Any, msg: String) extends Exception {
  override def toString() = "Lub error: " + msg + a + b
}