diff --git a/src/main/java/de/bitsharesmunich/graphenej/errors/IncompleteAssetError.java b/src/main/java/de/bitsharesmunich/graphenej/errors/IncompleteAssetError.java index b699778..9b5ee2a 100644 --- a/src/main/java/de/bitsharesmunich/graphenej/errors/IncompleteAssetError.java +++ b/src/main/java/de/bitsharesmunich/graphenej/errors/IncompleteAssetError.java @@ -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"); }