method
yaml_new
ruby latest stable - Class:
Exception
yaml_new( klass, tag, val )public
No documentation available.
# File lib/yaml/rubytypes.rb, line 119
def Exception.yaml_new( klass, tag, val )
o = YAML.object_maker( klass, { 'mesg' => val.delete( 'message' ) } )
val.each_pair do |k,v|
o.instance_variable_set("@#{k}", v)
end
o
end