Method: Vault::HTTPConnectionError#initialize
- Defined in:
- lib/vault/errors.rb
#initialize(address, exception) ⇒ HTTPConnectionError
Returns a new instance of HTTPConnectionError.
43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 |
# File 'lib/vault/errors.rb', line 43 def initialize(address, exception) @address = address @exception = exception super <<-EOH The Vault server at `#{address}' is not currently accepting connections. Please ensure that the server is running and that your authentication information is correct. The original error was `#{exception.class}'. Additional information (if any) is shown below: #{exception.} Please refer to the documentation for more help. EOH end |