Sha256: c3592ad8f0cce225a2ecd7d489858c225282e7b629ef4f5bb125bc51c4f0de45

Contents?: true

Size: 1.22 KB

Versions: 14

Compression:

Stored size: 1.22 KB

Contents

# Copyright (C) 2009-2010  Kouhei Sutou <kou@clear-code.com>
#
# This library is free software; you can redistribute it and/or
# modify it under the terms of the GNU Lesser General Public
# License version 2.1 as published by the Free Software Foundation.
#
# This library is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
# Lesser General Public License for more details.
#
# You should have received a copy of the GNU Lesser General Public
# License along with this library; if not, write to the Free Software
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA

module ActiveGroonga
  # Generic ActiveGroonga exception class.
  class Error < StandardError
  end

  class RecordNotSaved < Error
  end

  class NoKeyTableError < Error
    attr_reader :table
    def initialize(table)
      @table = table
      super("table doesn't have key: #{@table}")
    end
  end

  class KeyOverrideError < Error
    attr_reader :table, :key
    def initialize(table, key)
      @table = table
      @key = key
      super("can't override existing record key: #{@table}: <#{@key}>")
    end
  end
end

Version data entries

14 entries across 14 versions & 1 rubygems

Version Path
activegroonga-4.2.1 lib/active_groonga/error.rb
activegroonga-4.2.0 lib/active_groonga/error.rb
activegroonga-4.0.0 lib/active_groonga/error.rb
activegroonga-2.1.4 lib/active_groonga/error.rb
activegroonga-2.1.3 lib/active_groonga/error.rb
activegroonga-2.1.2 lib/active_groonga/error.rb
activegroonga-2.1.1 lib/active_groonga/error.rb
activegroonga-1.0.7 lib/active_groonga/error.rb
activegroonga-1.0.6 lib/active_groonga/error.rb
activegroonga-1.0.5 lib/active_groonga/error.rb
activegroonga-1.0.4 lib/active_groonga/error.rb
activegroonga-1.0.3 lib/active_groonga/error.rb
activegroonga-1.0.1 lib/active_groonga/error.rb
activegroonga-1.0.0 lib/active_groonga/error.rb