1 21 package oracle.toplink.essentials.exceptions.i18n; 23 24 import java.util.ListResourceBundle ; 25 26 33 public class ConcurrencyExceptionResource extends ListResourceBundle { 34 static final Object [][] contents = { 35 { "2001", "Wait was interrupted. {0}Message: [{1}]" }, 36 { "2002", "Wait failure on ServerSession." }, 37 { "2003", "Wait failure on ClientSession." }, 38 { "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." }, 39 { "2005", "Wait failure on Sequencing Connection Handler for DatabaseSession." }, 40 { "2006", "Attempt to acquire sequencing values through a single Connection({0}) simultaneously in multiple threads" }, 41 { "2007", "Max number of attempts to lock object: {0} exceded. Failed to clone the object." }, 42 { "2008", "Max number of attempts to lock object: {0} exceded. Failed to merge the transaction." }, 43 { "2009", "Max number of attempts to lock object exceded. Failed to build the object. Thread: {0} has a lock on the object but thread: {1} is building the object"} 44 }; 45 46 49 protected Object [][] getContents() { 50 return contents; 51 } 52 } 53 | Popular Tags |