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

org.objectweb.asm.tree.UnsupportedClassVersionException Maven / Gradle / Ivy

There is a newer version: 9.7
Show newest version
package org.objectweb.asm.tree;

/**
 * Exception thrown in {@link AnnotationNode#check}, {@link ClassNode#check}, {@link
 * FieldNode#check} and {@link MethodNode#check} when these nodes (or their children, recursively)
 * contain elements that were introduced in more recent versions of the ASM API than version passed
 * to these methods.
 *
 * @author Eric Bruneton
 */
public class UnsupportedClassVersionException extends RuntimeException {

  private static final long serialVersionUID = -3502347765891805831L;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy