summaryrefslogtreecommitdiff
path: root/src/dbc/scala/dbc/exception/IncompatibleSchema.scala
blob: 02f4990256e42d2b44a614e16e19eeae8d1d8380 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
/*                     __                                               *\
**     ________ ___   / /  ___     Scala API                            **
**    / __/ __// _ | / /  / _ |    (c) 2003-2009, LAMP/EPFL             **
**  __\ \/ /__/ __ |/ /__/ __ |                                         **
** /____/\___/_/ |_/____/_/ | |                                         **
**                          |/                                          **
\*                                                                      */

// $Id:IncompatibleSchema.scala 6853 2006-03-20 16:58:47 +0100 (Mon, 20 Mar 2006) dubochet $


package scala.dbc.exception;


/** A type category for all SQL types that store constant-precision numbers. */
case class IncompatibleSchema (
  expectedSchema: List[DataType],
  foundSchema: List[DataType]
) extends Exception;