GraphError

object GraphError
Companion:
class
trait Sum
trait Mirror
class Object
trait Matchable
class Any

Type members

Classlikes

case class CircularDependency[+Key, +A](node: Node[Key, A], dependency: Node[Key, A], depth: Int) extends GraphError[Key, A]
case class MissingTopLevelDependency[+Key](requirement: Key) extends GraphError[Key, Nothing]
case class MissingTransitiveDependencies[+Key, +A](node: Node[Key, A], dependency: Chunk[Key]) extends GraphError[Key, A]

Inherited types

The names of the product elements

The names of the product elements

Inherited from:
Mirror

The name of the type

The name of the type

Inherited from:
Mirror

Value members

Concrete methods

def missingTransitiveDependency[Key, A](node: Node[Key, A], dependency: Key): GraphError[Key, A]