add missing class

This commit is contained in:
AZ 2017-02-04 19:11:13 +01:00
parent 4b4c4af7ae
commit 7709521c8c

View File

@ -0,0 +1,11 @@
package jota.error;
/**
* Created by Adrian on 04.02.2017.
*/
public class InvalidTrytesException extends BaseException {
public InvalidTrytesException() {
super("Invalid input trytes");
}
}