core: add serial uid to JadxRuntimeException

This commit is contained in:
Skylot
2014-06-24 14:07:53 +04:00
parent 813b7bca6e
commit a36bc8f29a
@@ -1,6 +1,9 @@
package jadx.core.utils.exceptions;
public class JadxOverflowException extends JadxRuntimeException {
private static final long serialVersionUID = 2568659798680154204L;
public JadxOverflowException(String message) {
super(message);
}