Exception: CrystalSDK::Profile::NotFoundYetError

Inherits:
StandardError
  • Object
show all
Defined in:
lib/crystal_sdk/profile/errors.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(request, msg = 'Profile not found in time') ⇒ NotFoundYetError

Returns a new instance of NotFoundYetError.



19
20
21
22
# File 'lib/crystal_sdk/profile/errors.rb', line 19

def initialize(request, msg = 'Profile not found in time')
  @request = request
  super(msg)
end

Instance Attribute Details

#requestObject (readonly)

Returns the value of attribute request.



17
18
19
# File 'lib/crystal_sdk/profile/errors.rb', line 17

def request
  @request
end