summaryrefslogtreecommitdiff
path: root/asm-tree/src/main/java/org/objectweb/asm/tree/UnsupportedClassVersionException.java
diff options
context:
space:
mode:
Diffstat (limited to 'asm-tree/src/main/java/org/objectweb/asm/tree/UnsupportedClassVersionException.java')
-rw-r--r--asm-tree/src/main/java/org/objectweb/asm/tree/UnsupportedClassVersionException.java14
1 files changed, 14 insertions, 0 deletions
diff --git a/asm-tree/src/main/java/org/objectweb/asm/tree/UnsupportedClassVersionException.java b/asm-tree/src/main/java/org/objectweb/asm/tree/UnsupportedClassVersionException.java
new file mode 100644
index 00000000..ee3b92a2
--- /dev/null
+++ b/asm-tree/src/main/java/org/objectweb/asm/tree/UnsupportedClassVersionException.java
@@ -0,0 +1,14 @@
+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;
+}