Remove the declaration of thrown exception
[aaf/authz.git] / cadi / core / src / main / java / org / onap / aaf / cadi / AES.java
index c4f3d50..4ec5168 100644 (file)
@@ -63,7 +63,7 @@ public class AES implements Encryption {
         return kgen.generateKey();
     }
 
-    public AES(byte[] aeskey, int offset, int len) throws IOException, NoSuchAlgorithmException, NoSuchPaddingException {
+    public AES(byte[] aeskey, int offset, int len){
         aeskeySpec = new SecretKeySpec(aeskey,offset,len,AES);
     }