class ArtifactoryApi::Exceptions::InternalServerError
This exception class handles cases where the Artifactory API returns with a 500 Internel Server Error.
Public Class Methods
new( message = "")
click to toggle source
Calls superclass method
ArtifactoryApi::Exceptions::ApiException::new
# File lib/artifactory_api/exceptions.rb, line 53 def initialize( message = "") msg = "Internel Server Error. #{message}" super(msg) end