NodeException can be made a checked Exception

This commit is contained in:
Brenton Bostick 2023-02-02 15:59:16 -05:00
parent ca73651e12
commit 33a9cd02ba

View File

@ -27,9 +27,7 @@
package com.zerotier.sdk;
import java.lang.RuntimeException;
public class NodeException extends RuntimeException {
public class NodeException extends Exception {
public NodeException(String message) {
super(message);
}