Remove the declaration of thrown exception 'java.io.IOException', as it cannot be... 04/95704/1
authorThugutla sailakshmi <tsaila10@in.ibm.com>
Sun, 15 Sep 2019 17:36:53 +0000 (23:06 +0530)
committerThugutla sailakshmi <tsaila10@in.ibm.com>
Sun, 15 Sep 2019 17:37:43 +0000 (23:07 +0530)
Remove the declaration of thrown exception 'java.io.IOException'

Issue-ID: AAF-876
Change-Id: I03248a1d359f34a701f31586029d0768083ca591
Signed-off-by: Thugutla sailakshmi <tsaila10@in.ibm.com>
auth/auth-batch/src/main/java/org/onap/aaf/auth/batch/reports/bodies/TwoMonthNotifyCredBody.java

index 9d699cc..15d0065 100644 (file)
@@ -3,6 +3,7 @@
  * org.onap.aaf
  * ===========================================================================
  * Copyright (c) 2018 AT&T Intellectual Property. All rights reserved.
+ * Modifications Copyright (C) 2019 IBM.
  * ===========================================================================
  * Licensed under the Apache License, Version 2.0 (the "License");
  * you may not use this file except in compliance with the License.
@@ -26,7 +27,7 @@ import org.onap.aaf.auth.batch.helpers.ExpireRange;
 import org.onap.aaf.cadi.Access;
 
 public class TwoMonthNotifyCredBody extends NotifyCredBody {
-    public TwoMonthNotifyCredBody(Access access) throws IOException {
+    public TwoMonthNotifyCredBody(Access access) {
         super(access, ExpireRange.TWO_MONTH);
     }