Exception: Dependabot::DependabotError
- Inherits:
-
StandardError
- Object
- StandardError
- Dependabot::DependabotError
- Defined in:
- lib/dependabot/errors.rb
Direct Known Subclasses
BranchNotFound, DependencyFileNotEvaluatable, DependencyFileNotFound, DependencyFileNotParseable, DependencyFileNotResolvable, GitDependenciesNotReachable, GitDependencyReferenceNotFound, GoModulePathMismatch, InconsistentRegistryResponse, MissingEnvironmentVariable, OutOfMemory, PathDependenciesNotReachable, PrivateSourceAuthenticationFailure, PrivateSourceCertificateFailure, PrivateSourceTimedOut, RepoNotFound
Instance Method Summary collapse
-
#initialize(msg = nil) ⇒ DependabotError
constructor
A new instance of DependabotError.
Constructor Details
#initialize(msg = nil) ⇒ DependabotError
Returns a new instance of DependabotError.
7 8 9 10 |
# File 'lib/dependabot/errors.rb', line 7 def initialize(msg = nil) msg = (msg) super(msg) end |