Exception: Dependabot::DependabotError
- Inherits:
-
StandardError
- Object
- StandardError
- Dependabot::DependabotError
- Defined in:
- lib/dependabot/errors.rb
Direct Known Subclasses
AllVersionsIgnored, BranchNotFound, DependencyFileNotEvaluatable, DependencyFileNotFound, DependencyFileNotParseable, DependencyFileNotResolvable, DirectoryNotFound, GitDependenciesNotReachable, GitDependencyReferenceNotFound, GoModulePathMismatch, InconsistentRegistryResponse, MissingEnvironmentVariable, NotImplemented, OutOfDisk, OutOfMemory, PathDependenciesNotReachable, PrivateSourceAuthenticationFailure, PrivateSourceCertificateFailure, PrivateSourceTimedOut, PullRequestUpdater::Azure::PullRequestUpdateFailed, RepoNotFound, SharedHelpers::HelperSubprocessFailed, ToolVersionNotSupported, UnexpectedExternalCode
Constant Summary collapse
- BASIC_AUTH_REGEX =
%r{://(?<auth>[^:@]*:[^@%\s/]+(@|%40))}
- FURY_IO_PATH_REGEX =
Remove any path segment from fury.io sources
%r{fury\.io/(?<path>.+)}
Instance Method Summary collapse
-
#initialize(message = nil) ⇒ DependabotError
constructor
A new instance of DependabotError.
Constructor Details
#initialize(message = nil) ⇒ DependabotError
Returns a new instance of DependabotError.
12 13 14 |
# File 'lib/dependabot/errors.rb', line 12 def initialize( = nil) super(()) end |