class ArtifactoryApi::Exceptions::ServiceUnavailable

This exception class handles cases where Artifactory is getting restarted or reloaded where the response code returned is 503

Public Class Methods

new( message = "") click to toggle source
# File lib/artifactory_api/exceptions.rb, line 63
def initialize( message = "")
  msg = "Artifactory is unavailable #{message}"
  super(msg)
end