class ArtifactoryApi::Exceptions::NotFound

This exception class handles cases where a requested page is not found on the Artifactory API.

Public Class Methods

new( message = "") click to toggle source
# File lib/artifactory_api/exceptions.rb, line 42
def initialize( message = "")
  msg = "Requested component is not found on Artifactory" \
    if message.empty?
  super(msg)
end