Improve A2 provisioning framework.
[lgpl/argeo-commons.git] / org.argeo.osgi.boot / src / org / argeo / osgi / boot / OsgiBootException.java
index 9a75f17664a8a02f1a3e304dc59faada1040d84b..dd2b74d2dae21273aaf92e4f874ed6810bae9851 100644 (file)
@@ -16,7 +16,7 @@
 package org.argeo.osgi.boot;
 
 /** OsgiBoot specific exceptions */
-public class OsgiBootException extends RuntimeException {
+class OsgiBootException extends RuntimeException {
        private static final long serialVersionUID = 2414011711711425353L;
 
        public OsgiBootException() {
@@ -26,8 +26,8 @@ public class OsgiBootException extends RuntimeException {
                super(message);
        }
 
-       public OsgiBootException(String message, Throwable cause) {
-               super(message, cause);
+       public OsgiBootException(String message, Throwable e) {
+               super(message, e);
        }
 
 }