X7ROOT File Manager
Current Path:
/opt/alt/ruby33/share/gems/gems/psych-5.1.2/lib/psych
opt
/
alt
/
ruby33
/
share
/
gems
/
gems
/
psych-5.1.2
/
lib
/
psych
/
ðŸ“
..
📄
class_loader.rb
(2.01 KB)
📄
coder.rb
(2.05 KB)
📄
core_ext.rb
(362 B)
📄
exception.rb
(726 B)
📄
handler.rb
(7.2 KB)
ðŸ“
handlers
ðŸ“
json
ðŸ“
nodes
📄
nodes.rb
(2.38 KB)
📄
omap.rb
(75 B)
📄
parser.rb
(2.03 KB)
📄
scalar_scanner.rb
(4.69 KB)
📄
set.rb
(74 B)
📄
stream.rb
(923 B)
📄
streaming.rb
(667 B)
📄
syntax_error.rb
(588 B)
📄
tree_builder.rb
(3.02 KB)
📄
versions.rb
(187 B)
ðŸ“
visitors
📄
visitors.rb
(254 B)
📄
y.rb
(190 B)
Editing: exception.rb
# frozen_string_literal: true module Psych class Exception < RuntimeError end 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 # Subclasses `BadAlias` for backwards compatibility class AnchorNotDefined < BadAlias def initialize anchor_name super "An alias referenced an unknown anchor: #{anchor_name}" end end class DisallowedClass < Exception def initialize action, klass_name super "Tried to #{action} unspecified class: #{klass_name}" end end end
Upload File
Create Folder