Exception: EPP::ConnectionError
- Defined in:
- lib/epp-client/server.rb
Overview
A connection error
Instance Attribute Summary collapse
-
#addr ⇒ Object
readonly
Returns the value of attribute addr.
-
#error ⇒ Object
readonly
Returns the value of attribute error.
-
#peeraddr ⇒ Object
readonly
Returns the value of attribute peeraddr.
Instance Method Summary collapse
-
#initialize(message, addr, peeraddr, error) ⇒ ConnectionError
constructor
A new instance of ConnectionError.
Constructor Details
#initialize(message, addr, peeraddr, error) ⇒ ConnectionError
Returns a new instance of ConnectionError.
8 9 10 11 12 13 |
# File 'lib/epp-client/server.rb', line 8 def initialize(, addr, peeraddr, error) super() @error = error @addr = addr @peeraddr = peeraddr end |
Instance Attribute Details
#addr ⇒ Object (readonly)
Returns the value of attribute addr.
7 8 9 |
# File 'lib/epp-client/server.rb', line 7 def addr @addr end |
#error ⇒ Object (readonly)
Returns the value of attribute error.
7 8 9 |
# File 'lib/epp-client/server.rb', line 7 def error @error end |
#peeraddr ⇒ Object (readonly)
Returns the value of attribute peeraddr.
7 8 9 |
# File 'lib/epp-client/server.rb', line 7 def peeraddr @peeraddr end |