diff options
author | manisha07 <cmanis10@in.ibm.com> | 2019-11-07 13:07:20 +0530 |
---|---|---|
committer | manisha07 <cmanis10@in.ibm.com> | 2019-11-07 13:07:34 +0530 |
commit | 85b2f448d42c2f8e9813b05690279a6b642bf562 (patch) | |
tree | a683357c5110b4b2d2fdd34bd5326075b83c9dda /auth/auth-locate | |
parent | 333a035c095351e496328ec72c82beb65507e71b (diff) |
Remove the declaration of thrown exception 'java.lang.Exception', as it cannot be thrown from method's body
Issue-ID: AAF-1031
Change-Id: If31ebcba3a47034a8dd199e48f0bd9d82a673721
Signed-off-by: manisha07 <cmanis10@in.ibm.com>
Diffstat (limited to 'auth/auth-locate')
-rw-r--r-- | auth/auth-locate/src/main/java/org/onap/aaf/auth/locate/api/API_Proxy.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/auth/auth-locate/src/main/java/org/onap/aaf/auth/locate/api/API_Proxy.java b/auth/auth-locate/src/main/java/org/onap/aaf/auth/locate/api/API_Proxy.java index 962b9859..c77e9a85 100644 --- a/auth/auth-locate/src/main/java/org/onap/aaf/auth/locate/api/API_Proxy.java +++ b/auth/auth-locate/src/main/java/org/onap/aaf/auth/locate/api/API_Proxy.java @@ -59,7 +59,7 @@ public class API_Proxy { * @param facade * @throws Exception */ - public static void init(final AAF_Locate gwAPI, LocateFacade facade) throws Exception { + public static void init(final AAF_Locate gwAPI, LocateFacade facade) { String aafurl = gwAPI.access.getProperty(Config.AAF_URL,null); if (aafurl!=null) { |