Sha256: bd5fdf5e2afd3bef42fc02c01f4198ad866553e632ad12a71c93b72270871aaf

Contents?: true

Size: 198 Bytes

Versions: 6

Compression:

Stored size: 198 Bytes

Contents

module Recog
  class FingerprintParseError < StandardError
    attr_reader :line_number

    def initialize(msg, line_number=nil)
      @line_number = line_number
      super(msg)
    end
  end
end

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
recog-3.1.1 lib/recog/fingerprint_parse_error.rb
recog-3.1.0 lib/recog/fingerprint_parse_error.rb
recog-3.0.3 lib/recog/fingerprint_parse_error.rb
recog-3.0.2 lib/recog/fingerprint_parse_error.rb
recog-3.0.1 lib/recog/fingerprint_parse_error.rb
recog-2.3.23 lib/recog/fingerprint_parse_error.rb