1 21 package oracle.toplink.essentials.exceptions.i18n; 23 24 import java.util.ListResourceBundle ; 25 26 33 public class DefaultMappingExceptionResource extends ListResourceBundle { 34 static final Object [][] contents = { 35 { "20001", "Could not find the parameter type: [{2}], defined in the ejb-jar.xml, of the finder: [{1}] in the entity bean: [{0}]." }, 36 { "20002", "The finder method: [{1}] with the parameters as: [{2}], defined in the ejb-jar.xml, is not found in the home of bean: [{0}]." }, 37 { "20003", "The ejbSelect method: [{1}] with the parameters as: [{2}], defined in the ejb-jar.xml, is not found in the bean class of bean: [{0}]." }, 38 { "20004", "The finder method: [{1}] of bean: [{0}] in ejb-jar.xml file is not well defined. It should start with either 'find' or 'ejbSelect'." }, 39 { "20005", "The abstract getter method: [{0}] is not defined in the bean: [{1}]." }, 40 { "20006", "The cmp field: [{0}] is not defined in the bean: [{1}]." } 41 }; 42 43 46 protected Object [][] getContents() { 47 return contents; 48 } 49 } 50 | Popular Tags |