class RegistryApiClient::JsonError

Attributes

parent[R]
response[R]

Public Class Methods

new(message, response = nil) click to toggle source
Calls superclass method
# File lib/docker_cake/registry_api_client.rb, line 32
def initialize(message, response = nil)
  super(message)
  @parent = message if message.is_a?(Exception)
  @response = response
end