Unnecessary throws clause

git-svn-id: https://svn.apache.org/repos/asf/mina/ftpserver/trunk@1129738 13f79535-47bb-0310-9956-ffa450edef68
diff --git a/core/src/test/java/org/apache/ftpserver/util/EncryptUtilsTest.java b/core/src/test/java/org/apache/ftpserver/util/EncryptUtilsTest.java
index 078dbbc..2314e6e 100644
--- a/core/src/test/java/org/apache/ftpserver/util/EncryptUtilsTest.java
+++ b/core/src/test/java/org/apache/ftpserver/util/EncryptUtilsTest.java
@@ -21,8 +21,6 @@
 
 import junit.framework.TestCase;
 
-import org.apache.ftpserver.ftplet.FtpException;
-
 /**
 *
 * @author <a href="http://mina.apache.org">Apache MINA Project</a>
@@ -30,12 +28,12 @@
 */
 public class EncryptUtilsTest extends TestCase {
 
-    public void testEncryptMd5() throws FtpException {
+    public void testEncryptMd5() {
         assertEquals("21232F297A57A5A743894A0E4A801FC3", EncryptUtils
                 .encryptMD5("admin"));
     }
 
-    public void testEncryptSha() throws FtpException {
+    public void testEncryptSha() {
         assertEquals("D033E22AE348AEB5660FC2140AEC35850C4DA997", EncryptUtils
                 .encryptSHA("admin"));
     }