in regex-parser/src/jetbrains/teamcity/util/regex/ParserLoader.java [32:40]
public static RegexParser loadParser(@NotNull final String configResourceName, @NotNull final ClassLoader classLoader) throws FileNotFoundException, ParserLoadingException {
final InputStream parserConfigStream = classLoader.getResourceAsStream(configResourceName);
if (parserConfigStream == null) {
String message = "Specified parser configuration resource not found (" + configResourceName + ")";
LOG.warn(message);
throw new FileNotFoundException(message);
}
return loadParser(parserConfigStream);
}