Exception: Discorb::HTTPError
- Inherits:
 - 
      DiscorbError
      
        
- Object
 - StandardError
 - DiscorbError
 - Discorb::HTTPError
 
 
- Defined in:
 - lib/discorb/error.rb
 
Overview
Represents a HTTP error.
Direct Known Subclasses
Instance Attribute Summary collapse
- 
  
    
      #code -> String 
    
    
  
  
  
  
    
      readonly
    
    
  
  
  
  
  
  
    
The HTTP response code.
 - 
  
    
      #response -> Net::HTTPResponse 
    
    
  
  
  
  
    
      readonly
    
    
  
  
  
  
  
  
    
The HTTP response.
 
Instance Attribute Details
#code -> String (readonly)
Returns the HTTP response code.
      38 39 40  | 
    
      # File 'lib/discorb/error.rb', line 38 def code @code end  | 
  
#response -> Net::HTTPResponse (readonly)
Returns the HTTP response.
      40 41 42  | 
    
      # File 'lib/discorb/error.rb', line 40 def response @response end  |