mirror of
https://github.com/ceph/ceph
synced 2025-02-07 10:53:30 +00:00
6608323766
Signed-off-by: Zack Cerza <zack.cerza@inktank.com>
88 lines
2.0 KiB
Python
88 lines
2.0 KiB
Python
|
|
class BranchNotFoundError(ValueError):
|
|
def __init__(self, branch, repo=None):
|
|
self.branch = branch
|
|
self.repo = repo
|
|
|
|
def __str__(self):
|
|
if self.repo:
|
|
repo_str = " in repo: %s" % self.repo
|
|
else:
|
|
repo_str = ""
|
|
return "Branch '{branch}' not found{repo_str}!".format(
|
|
branch=self.branch, repo_str=repo_str)
|
|
|
|
|
|
class GitError(RuntimeError):
|
|
pass
|
|
|
|
|
|
class BootstrapError(RuntimeError):
|
|
pass
|
|
|
|
|
|
class CommandFailedError(Exception):
|
|
|
|
"""
|
|
Exception thrown on command failure
|
|
"""
|
|
def __init__(self, command, exitstatus, node=None):
|
|
self.command = command
|
|
self.exitstatus = exitstatus
|
|
self.node = node
|
|
|
|
def __str__(self):
|
|
return "Command failed on {node} with status {status}: {cmd!r}".format(
|
|
node=self.node,
|
|
status=self.exitstatus,
|
|
cmd=self.command,
|
|
)
|
|
|
|
|
|
class CommandCrashedError(Exception):
|
|
|
|
"""
|
|
Exception thrown on crash
|
|
"""
|
|
def __init__(self, command):
|
|
self.command = command
|
|
|
|
def __str__(self):
|
|
return "Command crashed: {command!r}".format(
|
|
command=self.command,
|
|
)
|
|
|
|
|
|
class ConnectionLostError(Exception):
|
|
|
|
"""
|
|
Exception thrown when the connection is lost
|
|
"""
|
|
def __init__(self, command):
|
|
self.command = command
|
|
|
|
def __str__(self):
|
|
return "SSH connection was lost: {command!r}".format(
|
|
command=self.command,
|
|
)
|
|
|
|
|
|
class ScheduleFailError(RuntimeError):
|
|
def __init__(self, message, name=None):
|
|
self.message = message
|
|
self.name = name
|
|
|
|
def __str__(self):
|
|
return "Job scheduling {name} failed: {msg}".format(
|
|
name=self.name,
|
|
msg=self.message,
|
|
).replace(' ', ' ')
|
|
|
|
|
|
class VersionNotFoundError(Exception):
|
|
def __init__(self, url):
|
|
self.url = url
|
|
|
|
def __str__(self):
|
|
return "Failed to fetch package version from %s" % self.url
|