Exception: Dependabot::RepoNotFound
- Inherits:
- 
      DependabotError
      
        - Object
- StandardError
- DependabotError
- Dependabot::RepoNotFound
 
- Extended by:
- T::Sig
- Defined in:
- lib/dependabot/errors.rb
Constant Summary
Constants inherited from DependabotError
DependabotError::BASIC_AUTH_REGEX, DependabotError::FURY_IO_PATH_REGEX
Instance Attribute Summary collapse
- 
  
    
      #source  ⇒ Object 
    
    
  
  
  
  
    
      readonly
    
    
  
  
  
  
  
  
    Returns the value of attribute source. 
Instance Method Summary collapse
- 
  
    
      #initialize(source, msg = nil)  ⇒ RepoNotFound 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    A new instance of RepoNotFound. 
Constructor Details
#initialize(source, msg = nil) ⇒ RepoNotFound
Returns a new instance of RepoNotFound.
| 400 401 402 403 | # File 'lib/dependabot/errors.rb', line 400 def initialize(source, msg = nil) @source = source super(msg) end | 
Instance Attribute Details
#source ⇒ Object (readonly)
Returns the value of attribute source.
| 397 398 399 | # File 'lib/dependabot/errors.rb', line 397 def source @source end |