public JmsServer(String file) throws ServerException {
version();
ConfigurationLoader loader = new ConfigurationLoader();
try {
_config = loader.load(file);
} catch (Exception exception) {
throw new ServerException("Failed to read configuration: " + file,
exception);
}
}