Sha256: 0c083264e253c9eec00e8f3c913e699a7160e5ed290c04b15670058f6c00822e

Contents?: true

Size: 229 Bytes

Versions: 82

Compression:

Stored size: 229 Bytes

Contents

module ExceptionHandler
  extend ActiveSupport::Concern

  class HubspotError < StandardError; end

  included do
    rescue_from HubspotError do |error|
      @error = error
      render template: 'home/index'
    end
  end
end

Version data entries

82 entries across 22 versions & 1 rubygems

Version Path
hubspot-api-client-9.0.0 sample-apps/trello-integration-app/app/controllers/concerns/exception_handler.rb
hubspot-api-client-9.0.0 sample-apps/search-result-paging-app/app/controllers/concerns/exception_handler.rb
hubspot-api-client-9.0.0 sample-apps/leaky-bucket-app/app/controllers/concerns/exception_handler.rb
hubspot-api-client-9.0.0 sample-apps/rate-limits-redis-sample-app/app/controllers/concerns/exception_handler.rb
hubspot-api-client-9.0.0 sample-apps/retry-middleware-sample-app/app/controllers/concerns/exception_handler.rb
hubspot-api-client-8.0.1 sample-apps/search-result-paging-app/app/controllers/concerns/exception_handler.rb
hubspot-api-client-8.0.1 sample-apps/leaky-bucket-app/app/controllers/concerns/exception_handler.rb
hubspot-api-client-8.0.1 sample-apps/trello-integration-app/app/controllers/concerns/exception_handler.rb
hubspot-api-client-8.0.1 sample-apps/rate-limits-redis-sample-app/app/controllers/concerns/exception_handler.rb
hubspot-api-client-8.0.1 sample-apps/retry-middleware-sample-app/app/controllers/concerns/exception_handler.rb
hubspot-api-client-8.0.0 sample-apps/search-result-paging-app/app/controllers/concerns/exception_handler.rb
hubspot-api-client-8.0.0 sample-apps/retry-middleware-sample-app/app/controllers/concerns/exception_handler.rb
hubspot-api-client-8.0.0 sample-apps/leaky-bucket-app/app/controllers/concerns/exception_handler.rb
hubspot-api-client-8.0.0 sample-apps/rate-limits-redis-sample-app/app/controllers/concerns/exception_handler.rb
hubspot-api-client-8.0.0 sample-apps/trello-integration-app/app/controllers/concerns/exception_handler.rb
hubspot-api-client-7.3.0 sample-apps/search-result-paging-app/app/controllers/concerns/exception_handler.rb
hubspot-api-client-7.3.0 sample-apps/retry-middleware-sample-app/app/controllers/concerns/exception_handler.rb
hubspot-api-client-7.3.0 sample-apps/leaky-bucket-app/app/controllers/concerns/exception_handler.rb
hubspot-api-client-7.3.0 sample-apps/rate-limits-redis-sample-app/app/controllers/concerns/exception_handler.rb
hubspot-api-client-7.3.0 sample-apps/trello-integration-app/app/controllers/concerns/exception_handler.rb