Exception: JenkinsApi::Exceptions::ViewNotFound

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

Overview

This exception class handles cases where the requested view does not exist in Jenkins.

Instance Method Summary collapse

Constructor Details

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

Returns a new instance of ViewNotFound.



182
183
184
185
# File 'lib/jenkins_api_client/exceptions.rb', line 182

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