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
Calls superclass method
ArtifactoryApi::Exceptions::ApiException::new
# 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