X-Git-Url: http://git.argeo.org/?a=blobdiff_plain;f=org.argeo.osgi.boot%2Fsrc%2Forg%2Fargeo%2Fosgi%2Fboot%2FOsgiBootException.java;h=fd6bf65464d2a54fc34c7815b9fe5b2b998ecb2c;hb=46a6e55c67dce2f5ab9d97502ac3a81e3ddc3d7a;hp=9a75f17664a8a02f1a3e304dc59faada1040d84b;hpb=575dfe19b8516b1213b6d56d9f34fc3bcdb62026;p=lgpl%2Fargeo-commons.git diff --git a/org.argeo.osgi.boot/src/org/argeo/osgi/boot/OsgiBootException.java b/org.argeo.osgi.boot/src/org/argeo/osgi/boot/OsgiBootException.java index 9a75f1766..fd6bf6546 100644 --- a/org.argeo.osgi.boot/src/org/argeo/osgi/boot/OsgiBootException.java +++ b/org.argeo.osgi.boot/src/org/argeo/osgi/boot/OsgiBootException.java @@ -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); } }