Remove old license headers
[lgpl/argeo-commons.git] / org.argeo.osgi.boot / src / org / argeo / osgi / boot / OsgiBootException.java
index 9a75f17664a8a02f1a3e304dc59faada1040d84b..fd6bf65464d2a54fc34c7815b9fe5b2b998ecb2c 100644 (file)
@@ -1,22 +1,7 @@
-/*
- * Copyright (C) 2007-2012 Argeo GmbH
- *
- * Licensed under the Apache License, Version 2.0 (the "License");
- * you may not use this file except in compliance with the License.
- * You may obtain a copy of the License at
- *
- *         http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an "AS IS" BASIS,
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- * See the License for the specific language governing permissions and
- * limitations under the License.
- */
 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 +11,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);
        }
 
 }