1 21 package oracle.toplink.essentials.exceptions.i18n; 23 24 import java.util.ListResourceBundle ; 25 26 29 public class XMLPlatformExceptionResource extends ListResourceBundle { 30 static final Object [][] contents = { 31 { "27001", "The XML Platform class was not found: {0}" }, 32 { "27002", "The XML Platform could not be instantiated: {0}" }, 33 { "27003", "A new XML document could not be created." }, 34 { "27004", "The XPath was invalid." }, 35 { "27005", "An error occurred while validating the document." }, 36 { "27006", "Could not resolve XML Schema: {0}" }, 37 { "27101", "An error occurred while parsing the document." }, 38 { "27102", "File not found: [{0}]" }, 39 { "27103", "** Parsing error, line [{0}], uri [{1}] [{2}]" }, 40 { "27201", "An error occurred while transforming the document." }, 41 { "27202", "Unknown type encountered: {0}" }, 42 }; 43 44 47 protected Object [][] getContents() { 48 return contents; 49 } 50 } 51 | Popular Tags |