All Downloads are FREE. Search and download functionalities are using the official Maven repository.

mdoc.internal.cli.FileException.scala Maven / Gradle / Ivy

The newest version!
package mdoc.internal.cli

import scala.meta.io.AbsolutePath
import scala.util.control.NoStackTrace

private class FileException(path: AbsolutePath, cause: Throwable)
    extends Exception(path.toString)
    with NoStackTrace {
  override def getCause: Throwable = cause
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy