aboutsummaryrefslogtreecommitdiffstats
path: root/git_deps/errors.py
blob: 1074624b9882e53e1cd7769484fdd1694336e304 (plain) (blame)
1
2
3
4
5
6
class InvalidCommitish(StandardError):
    def __init__(self, commitish):
        self.commitish = commitish

    def message(self):
        return "Couldn't resolve commitish %s" % self.commitish