From 75d7c81b7c857bd742f7aabeb3d1a7dd4310d5c4 Mon Sep 17 00:00:00 2001
From: aum <aum>
Date: Thu, 24 Mar 2005 08:39:04 +0000
Subject: [PATCH] Oops, forgot the DataFormatException

---
 core/java/src/net/i2p/data/Destination.java | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/core/java/src/net/i2p/data/Destination.java b/core/java/src/net/i2p/data/Destination.java
index 8b0269c580..42f7f88872 100644
--- a/core/java/src/net/i2p/data/Destination.java
+++ b/core/java/src/net/i2p/data/Destination.java
@@ -39,7 +39,7 @@ public class Destination extends DataStructureImpl {
      * alternative constructor which takes a base64 string representation
      * @param s a Base64 representation of the destination, as (eg) is used in hosts.txt
      */
-    public Destination(String s) {
+    public Destination(String s) throws DataFormatException {
         this();
         fromBase64(s);
     }
-- 
GitLab