org.gtlp.util.path.InconsistentDataException.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of gtlp-processing-utils Show documentation
Show all versions of gtlp-processing-utils Show documentation
Utility Library for Processing
The newest version!
package org.gtlp.util.path
/**
* Class to describe inconsistent data in [Path].
* This exception should be thrown when the data does not meet the
* expectations of an algorithm.
*/
class InconsistentDataException(s: String) : Throwable(s)