}
return sc;
} catch (RuntimeException e) {
log.error(e, Messages.ERRMSG_UNEXCPECTED_EXCEPTION_METHOD_EXECUTION_FAILED_X, e.getMessage());
throw new RedmineApiErrorException(Messages.ERRMSG_UNEXCPECTED_EXCEPTION_METHOD_EXECUTION_FAILED, e);
} catch (ConnectException e) {
log.info(Messages.ERRMSG_METHOD_EXECUTION_FAILED_X, e.getMessage());
throw new RedmineApiErrorException(e.getMessage(), e);
} catch (IOException e) {
//TODO
log.error(e, Messages.ERRMSG_METHOD_EXECUTION_FAILED_X, e.getMessage());
throw new RedmineApiErrorException(Messages.ERRMSG_METHOD_EXECUTION_FAILED, e);
}
}