summaryrefslogtreecommitdiff
path: root/src/dbc/scala/dbc/exception/IncompatibleSchema.scala
blob: 4e21daba0757d7279fe6d7ff6ad1b7c119d79502 (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-2011, LAMP/EPFL             **
**  __\ \/ /__/ __ |/ /__/ __ |                                         **
** /____/\___/_/ |_/____/_/ | |                                         **
**                          |/                                          **
\*                                                                      */



package scala.dbc
package exception


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