Exception: Lhj::JenkinsApi::Exceptions::CrumbNotFound

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

Overview

This exception class handles cases when Crumb Issues did not issue a crumb upon request.

Instance Method Summary collapse

Constructor Details

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



139
140
141
142
# File 'lib/lhj/jenkins/exceptions.rb', line 139

def initialize(logger, message = "", log_level = Logger::ERROR)
  message = "No crumb available on the server." if message.empty?
  super(logger, message)
end