1 21 package oracle.toplink.essentials.exceptions.i18n; 23 24 import java.util.ListResourceBundle ; 25 26 public class XMLParseExceptionResource extends ListResourceBundle { 27 28 static final Object [][] contents = { 29 { "34000", "An exception occurred while attempting to parse entity-mappings file: {0}. A DocumentBuilder instance could not be created."}, 30 { "34001", "An exception occurred while attempting to read entity-mappings file: {0}."}, 31 { "34002", "An exception occurred while processing persistence.xml from URL: {0}. A SAXParser instance could not be created."}, 32 { "34003", "An exception occurred while processing persistence.xml from URL: {0}. An XMLReader instance could not be created."}, 33 { "34004", "An exception occurred while processing persistence.xml from URL: {0}. The schema source at URL: {1} could not be set."}, 34 }; 35 36 39 protected Object [][] getContents() { 40 return contents; 41 } 42 } 43 | Popular Tags |