Sha256: d7c6a1018c05061633e3f0f11fe4658123fb188cf926ba3bd724189b746fee45

Contents?: true

Size: 597 Bytes

Versions: 2

Compression:

Stored size: 597 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 DatabaseError < 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
gamera-sequel-fixture-2.0.4 lib/sequel-fixture/exceptions.rb
gamera-sequel-fixture-2.0.3 lib/sequel-fixture/exceptions.rb