diff --git a/jadx-core/src/main/java/jadx/core/utils/exceptions/JadxOverflowException.java b/jadx-core/src/main/java/jadx/core/utils/exceptions/JadxOverflowException.java index 3e7ebc14065a77a6840c8f594864dfd376778f59..eb1c4a7fd52846d156e903016334ea60042ef93c 100644 --- a/jadx-core/src/main/java/jadx/core/utils/exceptions/JadxOverflowException.java +++ b/jadx-core/src/main/java/jadx/core/utils/exceptions/JadxOverflowException.java @@ -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); }