'NodeException' does not define a 'serialVersionUID' field

This commit is contained in:
Brenton Bostick 2023-02-02 16:00:04 -05:00 committed by Sean OMeara
commit 703bd59bc7

View file

@ -28,6 +28,9 @@
package com.zerotier.sdk;
public class NodeException extends Exception {
private static final long serialVersionUID = 6268040509883125819L;
public NodeException(String message) {
super(message);
}