blob: 5b7990b9e50858db1a9da76784bbf6c5a8dd9039 [file] [log] [blame]
/*
* Copyright (c) 1998, 2021 Oracle and/or its affiliates. All rights reserved.
* Copyright (c) 1998, 2018 IBM Corporation and/or its affiliates. All rights reserved.
*
* This program and the accompanying materials are made available under the
* terms of the Eclipse Public License v. 2.0 which is available at
* http://www.eclipse.org/legal/epl-2.0,
* or the Eclipse Distribution License v. 1.0 which is available at
* http://www.eclipse.org/org/documents/edl-v10.php.
*
* SPDX-License-Identifier: EPL-2.0 OR BSD-3-Clause
*/
// Contributors:
// Oracle - initial API and implementation from Oracle TopLink
// 09/24/2014-2.6 Rick Curtis
// - 443762 : Misc message cleanup.
package org.eclipse.persistence.exceptions.i18n;
import java.util.ListResourceBundle;
/**
* INTERNAL:
* English ResourceBundle for ConcurrencyException messages.
*
* Creation date: (12/6/00 9:47:38 AM)
* @author Xi Chen
*/
public final class ConcurrencyExceptionResource extends ListResourceBundle {
static final Object[][] contents = {
{ "2001", "Wait was interrupted. {0}Message: [{1}]" },
{ "2002", "Wait failure on ServerSession." },
{ "2003", "Wait failure on ClientSession." },
{ "2004", "A signal was attempted before wait() on ConcurrencyManager. This normally means that an attempt was made to {0}commit or rollback a transaction before it was started, or to rollback a transaction twice." },
{ "2005", "Wait failure on Sequencing Connection Handler for DatabaseSession." },
{ "2006", "Attempt to acquire sequencing values through a single Connection({0}) simultaneously in multiple threads" },
{ "2007", "Max number of attempts to lock object: {0} exceeded. Failed to clone the object." },
{ "2008", "Max number of attempts to lock object: {0} exceeded. Failed to merge the transaction." },
{ "2009", "Max number of attempts to lock object exceeded. Failed to build the object. Thread: {0} has a lock on the object but thread: {1} is building the object"},
{ "2010", "Lock has already been transitioned to a Deferred Lock. A second attempt to transition the lock has been requested by thread: {0} during merge."}
};
/**
* Default constructor.
*/
public ConcurrencyExceptionResource() {
// for reflection
}
/**
* Return the lookup table.
*/
@Override
protected Object[][] getContents() {
return contents;
}
}