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

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;