Exception: JenkinsApi::Exceptions::PluginNotFound

Inherits:
NotFound show all
Defined in:
lib/jenkins_api_client/exceptions.rb

Overview

Exception when a particular plugin is not found

Instance Method Summary collapse

Constructor Details

#initialize(logger, message = "", log_level = Logger::ERROR) ⇒ PluginNotFound

Returns a new instance of PluginNotFound.



240
241
242
243
# File 'lib/jenkins_api_client/exceptions.rb', line 240

def initialize(logger, message = "", log_level = Logger::ERROR)
  message = "The specified plugin is not found" if message.empty?
  super(logger, message)
end