# File lib/deltacloud/drivers/rimuhosting/rimuhosting_driver.rb, line 152
  def safely(&block)
    begin
      block.call
    rescue Exception => e
      raise Deltacloud::BackendError.new(500, e.class.to_s, e.message, e.backtrace)
    end
  end