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

com.jetbrains.plugin.structure.classes.resolvers.InvalidClassFileException.kt Maven / Gradle / Ivy

Go to download

Base library for resolving class files and resources. Used by other JetBrains Plugins Structure Classes libraries.

There is a newer version: 3.289
Show newest version
/*
 * Copyright 2000-2020 JetBrains s.r.o. and other contributors. Use of this source code is governed by the Apache 2.0 license that can be found in the LICENSE file.
 */

package com.jetbrains.plugin.structure.classes.resolvers

/**
 * An exception thrown to indicate that a class-file cannot be read
 * using the ASM Java Bytecode engineering library.
 */
class InvalidClassFileException(val className: String, private val asmError: String) : Exception() {

  override val message
    get() = "Unable to read class '$className' using the ASM Java Bytecode engineering library. The internal ASM error: $asmError."
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy