1 21 package oracle.toplink.essentials.exceptions.i18n; 23 24 import java.util.ListResourceBundle ; 25 26 33 public class DatabaseExceptionResource extends ListResourceBundle { 34 static final Object [][] contents = { 35 { "4003", "Configuration error. Class [{0}] not found." }, 36 { "4005", "DatabaseAccessor not connected." }, 37 { "4006", "Error reading BLOB data from stream in getObject()." }, 38 { "4007", "Could not convert object type due to an internal error. {0}java.sql.TYPES: [{1}]" }, 39 { "4008", "You cannot logout while a transaction is in progress." }, 40 { "4009", "The sequence table information is not complete." }, 41 { "4011", "Error preallocating sequence numbers. The sequence table information is not complete." }, 42 { "4014", "Cannot register SynchronizationListener." }, 43 { "4015", "Synchronized UnitOfWork does not support the commitAndResume() operation." }, 44 { "4016", "Configuration error. Could not instantiate driver [{0}]." }, 45 { "4017", "Configuration error. Could not access driver [{0}]." }, 46 { "4018", "The TransactionManager has not been set for the JTS driver." }, 47 { "4019", "Error while obtaining information about the database. Please look at the nested exception for more details." } 48 }; 49 50 53 protected Object [][] getContents() { 54 return contents; 55 } 56 } 57 | Popular Tags |