discord-jadx/app/src/main/java/org/objectweb/asm/MethodTooLargeException.java
2021-06-27 22:44:35 +02:00

16 lines
600 B
Java

package org.objectweb.asm;
public final class MethodTooLargeException extends IndexOutOfBoundsException {
private static final long serialVersionUID = 6807380416709738314L;
private final String className;
private final int codeSize;
private final String descriptor;
private final String methodName;
public MethodTooLargeException(String str, String str2, String str3, int i) {
super("Method too large: " + str + "." + str2 + " " + str3);
this.className = str;
this.methodName = str2;
this.descriptor = str3;
this.codeSize = i;
}
}