diff --git a/progit/exceptions.py b/progit/exceptions.py index 068375f..25000b5 100644 --- a/progit/exceptions.py +++ b/progit/exceptions.py @@ -21,3 +21,10 @@ class RepoExistsException(ProgitException): exists. ''' pass + + +class FileNotFoundException(ProgitException): + ''' Exception thrown when trying to create a repository that already + exists. + ''' + pass