pboling / flag_shih_tzu

Bit fields for ActiveRecord
http://railsbling.com/flag_shih_tzu
MIT License
495 stars 64 forks source link

Errors should inherit from StandardError, not Exception #68

Open pboling opened 7 years ago

pboling commented 7 years ago
  # TODO: Inherit from StandardError
  class IncorrectFlagColumnException < Exception; end
  class NoSuchFlagQueryModeException < Exception; end
  class NoSuchFlagException < Exception; end
  class DuplicateFlagColumnException < Exception; end