Adding missing error class
This commit is contained in:
parent
b93da14edb
commit
2b225a7b8d
4 changed files with 26 additions and 0 deletions
|
@ -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;
|
||||
|
||||
|
|
|
@ -0,0 +1,7 @@
|
|||
package de.bitsharesmunich.graphenej.api;
|
||||
|
||||
/**
|
||||
* Created by nelson on 1/25/17.
|
||||
*/
|
||||
public class GetAllAssetHolders {
|
||||
}
|
|
@ -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);
|
||||
}
|
||||
}
|
|
@ -0,0 +1,7 @@
|
|||
package de.bitsharesmunich.graphenej.models;
|
||||
|
||||
/**
|
||||
* Created by nelson on 1/25/17.
|
||||
*/
|
||||
public class HoldersCount {
|
||||
}
|
Loading…
Reference in a new issue