summaryrefslogtreecommitdiff
path: root/lib/psych
diff options
context:
space:
mode:
Diffstat (limited to 'lib/psych')
-rw-r--r--lib/psych/exception.rb7
-rw-r--r--lib/psych/visitors/to_ruby.rb2
2 files changed, 8 insertions, 1 deletions
diff --git a/lib/psych/exception.rb b/lib/psych/exception.rb
index f473b95..04a9a90 100644
--- a/lib/psych/exception.rb
+++ b/lib/psych/exception.rb
@@ -6,6 +6,13 @@ module Psych
class BadAlias < Exception
end
+ # Subclasses `BadAlias` for backwards compatibility
+ class AliasesNotEnabled < BadAlias
+ def initialize
+ super "Alias parsing was not enabled. To enable it, pass `aliases: true` to `Psych::load` or `Psych::safe_load`."
+ end
+ end
+
class DisallowedClass < Exception
def initialize action, klass_name
super "Tried to #{action} unspecified class: #{klass_name}"
diff --git a/lib/psych/visitors/to_ruby.rb b/lib/psych/visitors/to_ruby.rb
index 935bc74..0bf5198 100644
--- a/lib/psych/visitors/to_ruby.rb
+++ b/lib/psych/visitors/to_ruby.rb
@@ -427,7 +427,7 @@ module Psych
class NoAliasRuby < ToRuby
def visit_Psych_Nodes_Alias o
- raise BadAlias, "Unknown alias: #{o.anchor}"
+ raise AliasesNotEnabled
end
end
end