o
com.snowplowanalytics.iglu.schemaddl.migrations.SchemaList
BuildError
Companion trait BuildError
object BuildError extends Serializable
Linear Supertypes
Ordering
- Alphabetic
- By Inheritance
Inherited
- BuildError
- Serializable
- Serializable
- AnyRef
- Any
- Hide All
- Show All
Visibility
- Public
- All
Type Members
-
case class
AmbiguousOrder(schemas: ModelGroupSet) extends BuildError with Product with Serializable
Given model group have schemas which could not be ordered unambiguously.
Given model group have schemas which could not be ordered unambiguously. For example, [1-0-0, 1-1-0, 1-0-1] schema list could not be ordered unambiguously because it could be either
[1-0-0, 1-0-1, 1-1-0]
or[1-0-0, 1-1-0, 1-0-1]
-
case class
GapInModelGroup(schemas: ModelGroupSet) extends BuildError with Product with Serializable
Gap in the schema list, e.g.
Gap in the schema list, e.g.
[1-0-0, 1-0-2]
is missing 1-0-1 version -
case class
UnexpectedState(schemas: ModelGroupSet) extends BuildError with Product with Serializable
Unknown error, should never be reached