CHG: make jsonError public

This commit is contained in:
Pete 2018-12-24 02:01:54 +01:00
parent e8659f9b9e
commit ed3db4c160

View file

@ -1,10 +1,10 @@
package org.asamk.signal;
class JsonError {
public class JsonError {
String message;
JsonError(Throwable exception) {
public JsonError(Throwable exception) {
this.message = exception.getMessage();
}
}