Exception: RDF::N3::Reader::SyntaxError

Inherits:
ReaderError show all
Defined in:
vendor/bundler/ruby/3.2.0/bundler/gems/rdf-n3-2b45a55b147e/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:

Options Hash (**options):

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


977
978
979
980
981
982
# File 'vendor/bundler/ruby/3.2.0/bundler/gems/rdf-n3-2b45a55b147e/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:



967
968
969
# File 'vendor/bundler/ruby/3.2.0/bundler/gems/rdf-n3-2b45a55b147e/lib/rdf/n3/reader.rb', line 967

def lineno
  @lineno
end

#productionSymbol (readonly)

The current production.

Returns:



955
956
957
# File 'vendor/bundler/ruby/3.2.0/bundler/gems/rdf-n3-2b45a55b147e/lib/rdf/n3/reader.rb', line 955

def production
  @production
end

#tokenString (readonly)

The invalid token which triggered the error.

Returns:



961
962
963
# File 'vendor/bundler/ruby/3.2.0/bundler/gems/rdf-n3-2b45a55b147e/lib/rdf/n3/reader.rb', line 961

def token
  @token
end