class Artifactory::Error::InvalidBuildType

A general connection error with a more informative message

def initialize(given_type)

def initialize(given_type)
  super <<~EOH
    '#{given_type}' is not a valid build type.
    Valid build types include:
        #{Resource::Build::BUILD_TYPES.join("\n    ")}"
  EOH
end