Added new constructor
This commit is contained in:
parent
bd9cbc6880
commit
e4768c700c
1 changed files with 5 additions and 0 deletions
|
@ -4,6 +4,11 @@ package de.bitsharesmunich.graphenej.errors;
|
|||
* Created by nelson on 12/25/16.
|
||||
*/
|
||||
public class IncompleteAssetError extends RuntimeException{
|
||||
|
||||
public IncompleteAssetError(String message){
|
||||
super(message);
|
||||
}
|
||||
|
||||
public IncompleteAssetError(){
|
||||
super("The asset used in this method is probably incomplete, Assets instances can be created with just its id information but this context requires more information");
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue