Skip to content

Commit

Permalink
Merge branch 'dev' of github.com:knightliao/disconf into dev
Browse files Browse the repository at this point in the history
  • Loading branch information
knightliao committed Jun 2, 2016
2 parents b7c73c0 + ef770a4 commit 9c2e5af
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ public static String getHostName() throws Exception {

} catch (UnknownHostException e) {

throw new Exception();
throw new Exception(e);
}
}

Expand All @@ -49,7 +49,7 @@ public static String getHostIp() throws Exception {

} catch (UnknownHostException e) {

throw new Exception();
throw new Exception(e);
}
}

Expand Down

0 comments on commit 9c2e5af

Please sign in to comment.