1 21 package oracle.toplink.essentials.exceptions.i18n; 23 24 25 32 public class ExceptionResource extends java.util.ListResourceBundle { 33 static final Object [][] contents = { 34 { "NoExceptionTranslationForThisLocale", "(There is no English translation for this exception.) {0}" }, 35 { "ExceptionHeader", "Exception [TOPLINK-" }, 36 { "DescriptionHeader", "Exception Description: " }, 37 { "InternalExceptionHeader", "Internal Exception: " }, 38 { "TargetInvocationExceptionHeader", "Target Invocation Exception: " }, 39 { "ErrorCodeHeader", "Error Code: " }, 40 { "LocalExceptionStackHeader", "Local Exception Stack: " }, 41 { "InternalExceptionStackHeader", "Internal Exception Stack: " }, 42 { "TargetInvocationExceptionStackHeader", "Target Invocation Exception Stack: " }, 43 { "MappingHeader", "Mapping: " }, 44 { "DescriptorHeader", "Descriptor: " }, 45 { "QueryHeader", "Query: " }, 46 { "DescriptorExceptionsHeader", "Descriptor Exceptions: " }, 47 { "RuntimeExceptionsHeader", "Runtime Exceptions: " } 48 }; 49 50 53 protected Object [][] getContents() { 54 return contents; 55 } 56 } 57 | Popular Tags |