dpaluy/sendgrid-threads

View on GitHub
lib/sendgrid_threads/exceptions.rb

Summary

Maintainability
A
0 mins
Test Coverage
module SendgridThreads
  class Exception < StandardError
    def initialize(message)
      super(message)
    end
  end
end