Sha256: b12c631707353fb0d774ab418c4e17555aca3791c541251441fe4061b2a94d40

Contents?: true

Size: 585 Bytes

Versions: 112

Compression:

Stored size: 585 Bytes

Contents

# frozen_string_literal: true
require 'psych/exception'

module Psych
  class SyntaxError < Psych::Exception
    attr_reader :file, :line, :column, :offset, :problem, :context

    def initialize file, line, col, offset, problem, context
      err      = [problem, context].compact.join ' '
      filename = file || '<unknown>'
      message  = "(%s): %s at line %d column %d" % [filename, err, line, col]

      @file    = file
      @line    = line
      @column  = col
      @offset  = offset
      @problem = problem
      @context = context
      super(message)
    end
  end
end

Version data entries

112 entries across 109 versions & 12 rubygems

Version Path
psych-3.0.2-x64-mingw32 lib/psych/syntax_error.rb
psych-3.0.2-java lib/psych/syntax_error.rb
psych-3.0.2 lib/psych/syntax_error.rb
psych-3.0.0.beta4-java lib/psych/syntax_error.rb
psych-3.0.0.beta4 lib/psych/syntax_error.rb
psych-with-location-3.0.0.beta3 lib/psych/syntax_error.rb
psych-3.0.0.beta3-x86-mingw32 lib/psych/syntax_error.rb
psych-3.0.0.beta3-x64-mingw32 lib/psych/syntax_error.rb
psych-3.0.0.beta3-java lib/psych/syntax_error.rb
psych-3.0.0.beta3 lib/psych/syntax_error.rb
psych-3.0.0.beta2-x64-mingw32 lib/psych/syntax_error.rb
psych-3.0.0.beta2-x86-mingw32 lib/psych/syntax_error.rb