still getting re-used to all the places you have to put access modifiers in Java

This commit is contained in:
Grant Limberg 2015-05-26 20:03:47 -07:00
parent 703c311e07
commit adaf9cf32b

View File

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