Exception: Artifactory::Error::ArtifactoryError

Inherits:
StandardError
  • Object
show all
Defined in:
lib/artifactory/errors.rb

Direct Known Subclasses

ConnectionError

Instance Method Summary collapse

Constructor Details

#initialize(options = {}) ⇒ ArtifactoryError

Returns a new instance of ArtifactoryError.



4
5
6
7
8
9
# File 'lib/artifactory/errors.rb', line 4

def initialize(options = {})
  class_name = self.class.to_s.split('::').last
  error_key  = Util.underscore(class_name)

  super I18n.t("artifactory.errors.#{error_key}", options)
end