Exception: Lhj::JenkinsApi::Exceptions::PluginNotFound

Inherits:
NotFound show all
Defined in:
lib/lhj/jenkins/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.



219
220
221
222
# File 'lib/lhj/jenkins/exceptions.rb', line 219

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