Fix checkstyle warnings
[oom/platform/cert-service.git] / certServiceClient / src / main / java / org / onap / aaf / certservice / client / api / ExitableException.java
index fc1bc76..3a7a542 100644 (file)
  * limitations under the License.
  * ============LICENSE_END=========================================================
  */
+
 package org.onap.aaf.certservice.client.api;
 
 public abstract class ExitableException extends Exception {
-    public ExitableException(Throwable e) {
-        super(e);
+    public ExitableException(Throwable cause) {
+        super(cause);
     }
 
     public ExitableException(String message) {
         super(message);
     }
+
     public abstract ExitStatus applicationExitStatus();
 }