InputStream is = getClass().getClassLoader().getResourceAsStream(propertyFile);
Properties p = new Properties();
p.load(is);
return p;
} catch (IOException e) {
throw new UnexpectedException("Couldn't load " + BRAINTREE_PROPERTY_FILE + " can't continue", e);
}
}