class Cortex::Exceptions::ConnectionFailed
Attributes
base_url[R]
Public Class Methods
new(base_url = "http://api.cbcortex.com/api/v1/", message = nil, http_status = 599)
click to toggle source
Calls superclass method
Cortex::Exceptions::ApiError::new
# File lib/cortex/exceptions.rb, line 30 def initialize(base_url = "http://api.cbcortex.com/api/v1/", message = nil, http_status = 599) @base_url = base_url super(message: message, http_status: http_status) end