From e4768c700ccbe0d8ab1bb2b9f9fa69a244912a92 Mon Sep 17 00:00:00 2001 From: "Nelson R. Perez" Date: Tue, 10 Jan 2017 14:23:44 -0500 Subject: [PATCH] Added new constructor --- .../graphenej/errors/IncompleteAssetError.java | 5 +++++ 1 file changed, 5 insertions(+) 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"); }