Packages

object BuildError extends Serializable

Linear Supertypes
Serializable, Serializable, AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. BuildError
  2. Serializable
  3. Serializable
  4. AnyRef
  5. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Type Members

  1. 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]

  2. 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

  3. case class UnexpectedState(schemas: ModelGroupSet) extends BuildError with Product with Serializable

    Unknown error, should never be reached