Class: PAErrorProxy
- Inherits:
-
String
- Object
- String
- PAErrorProxy
show all
- Defined in:
- lib/pa_proxies/pa_error_proxy.rb
Instance Method Summary
collapse
Dynamic Method Handling
This class handles dynamic methods through the method_missing method
#method_missing(sym, *args, &block) ⇒ Object
10
11
12
|
# File 'lib/pa_proxies/pa_error_proxy.rb', line 10
def method_missing(sym, *args, &block)
return self
end
|
Instance Method Details
#[](index) ⇒ Object
2
3
4
|
# File 'lib/pa_proxies/pa_error_proxy.rb', line 2
def [](index)
return self
end
|
#to_s ⇒ Object
6
7
8
|
# File 'lib/pa_proxies/pa_error_proxy.rb', line 6
def to_s
return ""
end
|