Adding missing error class

master
Nelson R. Perez 2017-01-25 15:57:03 -05:00
parent b93da14edb
commit 2b225a7b8d
4 changed files with 26 additions and 0 deletions

View File

@ -3,6 +3,7 @@ package de.bitsharesmunich.graphenej;
import com.google.common.primitives.Bytes;
import com.google.common.primitives.UnsignedLong;
import com.google.gson.*;
import de.bitsharesmunich.graphenej.errors.IncompatibleOperation;
import de.bitsharesmunich.graphenej.interfaces.ByteSerializable;
import de.bitsharesmunich.graphenej.interfaces.JsonSerializable;

View File

@ -0,0 +1,7 @@
package de.bitsharesmunich.graphenej.api;
/**
* Created by nelson on 1/25/17.
*/
public class GetAllAssetHolders {
}

View File

@ -0,0 +1,11 @@
package de.bitsharesmunich.graphenej.errors;
/**
* Created by nelson on 1/18/17.
*/
public class IncompatibleOperation extends RuntimeException {
public IncompatibleOperation(String message){
super(message);
}
}

View File

@ -0,0 +1,7 @@
package de.bitsharesmunich.graphenej.models;
/**
* Created by nelson on 1/25/17.
*/
public class HoldersCount {
}