Exception: JenkinsApi::Exceptions::InternelServerErrorException

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

Overview

This exception class handles cases where the Jenkins API returns with a 500 Internel Server Error.

Instance Method Summary collapse

Constructor Details

#initialize(message = "") ⇒ InternelServerErrorException

Returns a new instance of InternelServerErrorException.



77
78
79
80
81
82
# File 'lib/jenkins_api_client/exceptions.rb', line 77

def initialize(message = "")
  super("Internel Server Error. Perhaps the in-memory configuration of" +
        " Jenkins is different from the disk configuration." +
        " Please try to reload the configuration #{message}"
       )
end