summaryrefslogtreecommitdiff
path: root/ruby_2_2/ext/psych/lib/psych/syntax_error.rb
diff options
context:
space:
mode:
Diffstat (limited to 'ruby_2_2/ext/psych/lib/psych/syntax_error.rb')
-rw-r--r--ruby_2_2/ext/psych/lib/psych/syntax_error.rb21
1 files changed, 0 insertions, 21 deletions
diff --git a/ruby_2_2/ext/psych/lib/psych/syntax_error.rb b/ruby_2_2/ext/psych/lib/psych/syntax_error.rb
deleted file mode 100644
index e200ef0060..0000000000
--- a/ruby_2_2/ext/psych/lib/psych/syntax_error.rb
+++ /dev/null
@@ -1,21 +0,0 @@
-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