method

yaml_new

ruby latest stable - Class: Exception

Method deprecated or moved

This method is deprecated or moved on the latest stable version. The last existing version (v1_9_1_378) is shown here.

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