X-Git-Url: https://git.argeo.org/?a=blobdiff_plain;f=server%2Fruntime%2Forg.argeo.server.core%2Fsrc%2Fmain%2Fjava%2Forg%2Fargeo%2Fserver%2FArgeoServerException.java;h=251160c3715df957ca493b6e03149c2b16245928;hb=3062d77d3dd1bb5c8378df4de1ba822749fc4e4f;hp=f8e3fc4fc76b6449b5b74121d7ca06771b657b53;hpb=e241a5585404c07bea8351c4112be64512ad7fb9;p=lgpl%2Fargeo-commons.git diff --git a/server/runtime/org.argeo.server.core/src/main/java/org/argeo/server/ArgeoServerException.java b/server/runtime/org.argeo.server.core/src/main/java/org/argeo/server/ArgeoServerException.java index f8e3fc4fc..251160c37 100644 --- a/server/runtime/org.argeo.server.core/src/main/java/org/argeo/server/ArgeoServerException.java +++ b/server/runtime/org.argeo.server.core/src/main/java/org/argeo/server/ArgeoServerException.java @@ -1,10 +1,26 @@ +/* + * Copyright (C) 2010 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);