public String getText(String key, String a1, String a2, String a3) {
   try {
     // Check the doclet specific properties file.
     return getDocletSpecificMsg().getText(key, a1, a2, a3);
   } catch (Exception e) {
     // Check the shared properties file.
     return message.getText(key, a1, a2, a3);
   }
 }