commonMain.io.github.alexandrepiveteau.graphs.NoSuchArcException.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of kotlin-graphs Show documentation
Show all versions of kotlin-graphs Show documentation
Model directed, undirected, weighted and unweighted graphs and perform computations on them in Kotlin multiplatform.
package io.github.alexandrepiveteau.graphs
/** An exception thrown when an [Arc] is not found in a [DirectedGraph]. */
public class NoSuchArcException : NoSuchElementException("No such arc.")