/opt/cpanel/ea-ruby27/root/usr/share/ruby/ruby-2.7.8/psych
NameSizeModeActions
handlers/-0755rm
json/-0755rm
nodes/-0755rm
visitors/-0755rm
class_loader.rb19550644editdlrm
coder.rb20980644editdlrm
core_ext.rb3590644editdlrm
exception.rb2640644editdlrm
handler.rb73680644editdlrm
nodes.rb24110644editdlrm
omap.rb750644editdlrm
parser.rb17110644editdlrm
scalar_scanner.rb42350644editdlrm
set.rb740644editdlrm
stream.rb9230644editdlrm
streaming.rb6670644editdlrm
syntax_error.rb5850644editdlrm
tree_builder.rb30550644editdlrm
versions.rb2220644editdlrm
visitors.rb2360644editdlrm
y.rb1900644editdlrm
Edit: /opt/cpanel/ea-ruby27/root/usr/share/ruby/ruby-2.7.8/psych/syntax_error.rb (585B)
# 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 || '' 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