Class: RDF::N3::Reader::SyntaxError

Inherits:
ReaderError
  • Object
show all
Defined in:
lib/rdf/n3/reader.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(message, **options) ⇒ SyntaxError

Initializes a new syntax error instance.

Parameters:

  • message (String, #to_s)
  • options (Hash{Symbol => Object})

Options Hash (**options):

  • :production (Symbol) — default: nil
  • :token (String) — default: nil
  • :lineno (Integer) — default: nil


977
978
979
980
981
982
# File 'lib/rdf/n3/reader.rb', line 977

def initialize(message, **options)
  @production = options[:production]
  @token      = options[:token]
  @lineno     = options[:lineno] || (@token.lineno if @token.respond_to?(:lineno))
  super(message.to_s)
end

Instance Attribute Details

#linenoInteger (readonly)

The line number where the error occurred.

Returns:

  • (Integer)


967
968
969
# File 'lib/rdf/n3/reader.rb', line 967

def lineno
  @lineno
end

#productionSymbol (readonly)

The current production.

Returns:

  • (Symbol)


955
956
957
# File 'lib/rdf/n3/reader.rb', line 955

def production
  @production
end

#tokenString (readonly)

The invalid token which triggered the error.

Returns:

  • (String)


961
962
963
# File 'lib/rdf/n3/reader.rb', line 961

def token
  @token
end