Method: Faye::Error.method_missing
- Defined in:
- lib/faye/error.rb
.method_missing(type, *args) ⇒ Object
4 5 6 7 |
# File 'lib/faye/error.rb', line 4 def self.method_missing(type, *args) code = const_get(type.to_s.upcase) new(code[0], args, code[1]).to_s end |