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

com.jetbrains.plugin.structure.jar.JarArchiveCannotBeOpenException.kt Maven / Gradle / Ivy

Go to download

Base library for parsing JetBrains plugins. Used by other JetBrains Plugins structure libraries.

There is a newer version: 3.290
Show newest version
package com.jetbrains.plugin.structure.jar

import java.net.URI
import java.nio.file.Path

class JarArchiveCannotBeOpenException : JarArchiveException {
  constructor(jarUri: URI, cause: Throwable) : this("JAR file cannot be open at [$jarUri]", cause)
  constructor(jarPath: Path, cause: Throwable) : this("JAR file cannot be open at [$jarPath]", cause)
  constructor(jarPath: Path, additionalMessage: String) : super("JAR file cannot be open at [$jarPath]: $additionalMessage")
  constructor(jarPath: Path, resolvedJarUri: URI, cause: Throwable) : super("JAR file cannot be open at [$jarPath] (resolved URI: <$resolvedJarUri>)", cause)
  private constructor(message: String, cause: Throwable) : super(message, cause)
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy