summaryrefslogtreecommitdiff
path: root/ruby_2_2/ext/psych/lib/psych/exception.rb
diff options
context:
space:
mode:
Diffstat (limited to 'ruby_2_2/ext/psych/lib/psych/exception.rb')
-rw-r--r--ruby_2_2/ext/psych/lib/psych/exception.rb13
1 files changed, 0 insertions, 13 deletions
diff --git a/ruby_2_2/ext/psych/lib/psych/exception.rb b/ruby_2_2/ext/psych/lib/psych/exception.rb
deleted file mode 100644
index ce9d2caf3f..0000000000
--- a/ruby_2_2/ext/psych/lib/psych/exception.rb
+++ /dev/null
@@ -1,13 +0,0 @@
-module Psych
- class Exception < RuntimeError
- end
-
- class BadAlias < Exception
- end
-
- class DisallowedClass < Exception
- def initialize klass_name
- super "Tried to load unspecified class: #{klass_name}"
- end
- end
-end