Flowdock
bind(cl) public

No documentation

This method has no description. You can help the Ruby community by adding new notes.

Hide source
# File lib/e2mmap.rb, line 64
  def bind(cl)
    self.module_eval "#{<<-"begin;"}\n#{<<-"end;"}", __FILE__, __LINE__+1
    begin;
      def Raise(err = nil, *rest)
        Exception2MessageMapper.Raise(self.class, err, *rest)
      end
      alias Fail Raise

      class << self
        undef included
      end
      def self.included(mod)
        mod.extend Exception2MessageMapper
      end
    end;
  end
Register or log in to add new notes.