wakproductions/tdameritrade_api

View on GitHub
lib/tdameritrade_api/tdameritrade_api_error.rb

Summary

Maintainability
A
0 mins
Test Coverage
module TDAmeritradeApi
  class TDAmeritradeApiError < RuntimeError

  end

  class Exception
    def is_ctrl_c_exception?
      [SystemExit, Interrupt, IRB::Abort].index(self.class).present?
    end
  end
end