Oops, forgot the DataFormatException

This commit is contained in:
aum
2005-03-24 08:39:04 +00:00
committed by zzz
parent 1433e20f73
commit 75d7c81b7c

View File

@ -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);
}