Sha256: 0da5f945da22e6c055a5040179304357c59dbc8bf86f407d00fb04d3a96e0291

Contents?: true

Size: 231 Bytes

Versions: 12

Compression:

Stored size: 231 Bytes

Contents

# frozen_string_literal: true

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

12 entries across 12 versions & 1 rubygems

Version Path
recog-3.1.13 lib/recog/fingerprint_parse_error.rb
recog-3.1.12 lib/recog/fingerprint_parse_error.rb
recog-3.1.11 lib/recog/fingerprint_parse_error.rb
recog-3.1.10 lib/recog/fingerprint_parse_error.rb
recog-3.1.9 lib/recog/fingerprint_parse_error.rb
recog-3.1.8 lib/recog/fingerprint_parse_error.rb
recog-3.1.7 lib/recog/fingerprint_parse_error.rb
recog-3.1.6 lib/recog/fingerprint_parse_error.rb
recog-3.1.5 lib/recog/fingerprint_parse_error.rb
recog-3.1.4 lib/recog/fingerprint_parse_error.rb
recog-3.1.3 lib/recog/fingerprint_parse_error.rb
recog-3.1.2 lib/recog/fingerprint_parse_error.rb