class NexusCli::NexusHTTP404

Public Class Methods

new(body) click to toggle source
# File lib/nexus_cli/errors.rb, line 249
def initialize(body)
  @server_response = body
end

Public Instance Methods

message() click to toggle source
# File lib/nexus_cli/errors.rb, line 253
    def message
      %{Your command failed and the server returned an error code. The output of the response was:
#{@server_response}}
    end