// custom object (should return null)
String path3 = mAC3.getResourceFilePath("TestLanguageResourceObject", new String[] { "en" });
Assert.assertNull(path3);
// parameter values for which no resource exists (should fail)
AnnotatorContextException ex = null;
try {
mAC3.getResourceFilePath("TestFileLanguageResource", new String[] { "zh" });
} catch (AnnotatorContextException e) {
ex = e;
}