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

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