01: /*
02: * Licensed to the Apache Software Foundation (ASF) under one
03: * or more contributor license agreements. See the NOTICE file
04: * distributed with this work for additional information
05: * regarding copyright ownership. The ASF licenses this file
06: * to you under the Apache License, Version 2.0 (the
07: * "License"); you may not use this file except in compliance
08: * with the License. You may obtain a copy of the License at
09: *
10: * http://www.apache.org/licenses/LICENSE-2.0
11: *
12: * Unless required by applicable law or agreed to in writing,
13: * software distributed under the License is distributed on an
14: * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
15: * KIND, either express or implied. See the License for the
16: * specific language governing permissions and limitations
17: * under the License.
18: */
19: package org.apache.openjpa.util;
20:
21: import java.util.Collection;
22:
23: import org.apache.openjpa.lib.util.Localizer;
24: import org.apache.openjpa.lib.util.Localizer.Message;
25:
26: /**
27: * Exception type for optimistic concurrency violations.
28: *
29: * @author Marc Prud'hommeaux
30: * @since 0.2.5
31: * @nojavadoc
32: */
33: public class OptimisticException extends StoreException {
34:
35: private static final transient Localizer _loc = Localizer
36: .forPackage(OptimisticException.class);
37:
38: public OptimisticException(Message msg) {
39: super (msg);
40: }
41:
42: public OptimisticException(Object failed) {
43: this (_loc.get("opt-lock", Exceptions.toString(failed)));
44: setFailedObject(failed);
45: }
46:
47: public OptimisticException(Throwable[] nested) {
48: this (_loc.get("opt-lock-nested"));
49: setNestedThrowables(nested);
50: }
51:
52: public OptimisticException(Collection failed, Throwable[] nested) {
53: this (_loc.get("opt-lock-multi", Exceptions.toString(failed)));
54: setNestedThrowables(nested);
55: }
56:
57: public int getSubtype() {
58: return OPTIMISTIC;
59: }
60: }
|