mirror of
https://github.com/zerotier/ZeroTierOne.git
synced 2025-05-14 17:43:43 +02:00
NodeException can be made a checked Exception
This commit is contained in:
parent
02b810fb7c
commit
64521b3da6
1 changed files with 1 additions and 3 deletions
|
@ -27,9 +27,7 @@
|
||||||
|
|
||||||
package com.zerotier.sdk;
|
package com.zerotier.sdk;
|
||||||
|
|
||||||
import java.lang.RuntimeException;
|
public class NodeException extends Exception {
|
||||||
|
|
||||||
public class NodeException extends RuntimeException {
|
|
||||||
public NodeException(String message) {
|
public NodeException(String message) {
|
||||||
super(message);
|
super(message);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue