forked from gitpython-developers/GitPython
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy patherrors.py
More file actions
22 lines (17 loc) · 618 Bytes
/
errors.py
File metadata and controls
22 lines (17 loc) · 618 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
# errors.py
# Copyright (C) 2008 Michael Trier (mtrier@gmail.com) and contributors
#
# This module is part of GitPython and is released under
# the BSD License: http://www.opensource.org/licenses/bsd-license.php
class InvalidGitRepositoryError(Exception):
pass
class NoSuchPathError(Exception):
pass
class GitCommandError(Exception):
def __init__(self, command, status, stderr=None):
self.stderr = stderr
self.status = status
self.command = command
def __str__(self):
return repr("%s returned exit status %d" %
(str(self.command), self.status))