Exception: JenkinsApi::Exceptions::NotFoundException

Inherits:
ApiException
  • Object
show all
Defined in:
lib/jenkins_api_client/exceptions.rb

Overview

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

Instance Method Summary collapse

Constructor Details

#initialize(message = "") ⇒ NotFoundException

Returns a new instance of NotFoundException.



67
68
69
70
# File 'lib/jenkins_api_client/exceptions.rb', line 67

def initialize(message = "")
  super("Requested component is not found on the Jenkins CI server." +
        " #{message}")
end