scala.coursier.error.CoursierError.scala Maven / Gradle / Ivy
package coursier.error
// should be effectively sealed (only ResolutionError and FetchError as direct implementations)
abstract class CoursierError(message: String, cause: Throwable = null)
extends Exception(message, cause)
© 2015 - 2025 Weber Informatics LLC | Privacy Policy