commonMain.io.github.alexandrepiveteau.graphs.NoSuchVertexException.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 a [Vertex] is not found in a [UndirectedGraph]. */
public class NoSuchVertexException : NoSuchElementException("No such vertex.")