module GdsApi::ExceptionHandling

def ignoring(exception, &block)

def ignoring(exception, &block)
  yield
rescue exception
  # Discard the exception
end