class Vault::HTTPConnectionError
Attributes
Public Class Methods
Source
# 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.message} Please refer to the documentation for more help. EOH end
Calls superclass method
Public Instance Methods
Source
# File lib/vault/errors.rb, line 61 def original_exception @exception end