Sha256: 11dbb34a83a76d2b4da92543591ff860cc82b8a0e84a8cff43f26b35a1f25c82

Contents?: true

Size: 554 Bytes

Versions: 2

Compression:

Stored size: 554 Bytes

Contents

class Sequel::Fixture
  class IllegalFixtureFormat < StandardError; end
  class TablesNotEmptyError < StandardError; end
  class RollbackIllegalError < StandardError; end
  class MissingFixtureError < StandardError; end
  class MissingConnectionError < StandardError; end
  class LoadingFixtureIllegal < StandardError; end
  class ChangingConnectionIllegal < StandardError; end

  class MissingProcessedValueError < StandardError
    attr_accessor :field
    def initialize message, field = nil
      @field = field
      super message
    end
  end
end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
sequel-fixture-2.0.1 lib/sequel-fixture/exceptions.rb
sequel-fixture-2.0.0 lib/sequel-fixture/exceptions.rb