]> git.argeo.org Git - lgpl/argeo-commons.git/blobdiff - server/runtime/org.argeo.server.core/src/main/java/org/argeo/server/ArgeoServerException.java
Update license headers
[lgpl/argeo-commons.git] / server / runtime / org.argeo.server.core / src / main / java / org / argeo / server / ArgeoServerException.java
index f8e3fc4fc76b6449b5b74121d7ca06771b657b53..368ee5a5be05c4c578dca6a88a78b0bd2f52bf3e 100644 (file)
@@ -1,10 +1,25 @@
+/*
+ * Copyright (C) 2007-2012 Mathieu Baudier
+ *
+ * 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.server;
 
-public class ArgeoServerException extends RuntimeException {
-       private static final long serialVersionUID = 1L;
+import org.argeo.ArgeoException;
 
-       public ArgeoServerException() {
-       }
+/** @deprecated use {@link ArgeoException} instead */
+public class ArgeoServerException extends ArgeoException {
+       private static final long serialVersionUID = 1L;
 
        public ArgeoServerException(String message) {
                super(message);