Class: NameError::Message

Inherits:
Object
  • Object
show all
Defined in:
lib/akephalos/server.rb

Overview

In ruby-1.8.7 and later, the message for a NameError exception is lazily evaluated. There are, however, different implementations of this between ruby and jruby, so we realize these messages when sending over DRb.

Instance Method Summary collapse

Instance Method Details

#_dumpString

Note:

This method is called by DRb before sending the error to the remote

connection.

Returns:

  • (String)

    the inner message.



12
13
14
# File 'lib/akephalos/server.rb', line 12

def _dump
  to_s
end