alf-tool / alf-sequel

An adapter for using Alf with common SQL DBMSs, thanks to Sequel
MIT License
4 stars 1 forks source link

Missing definition of UnsupportedError #2

Open iongion opened 9 years ago

iongion commented 9 years ago

I think there is missing class definition for UnsupportedError. I was not able to find where UnsupportedError is defined as it is raised in:

But did not find it in any of the git submodules starting from 0.14 to current My resolution was adding it as this:

module Alf
  module Sequel
    module UnitOfWork
      class UnsupportedError < StandardError
      end
    end
  end
end