From 6d72f7033e350181cb8a612061f9ad90dbf4eccc Mon Sep 17 00:00:00 2001 From: Pierre-Yves Chibon Date: Jun 18 2015 12:41:54 +0000 Subject: Add a new pagure specific exception to be used by the EV server --- diff --git a/pagure/exceptions.py b/pagure/exceptions.py index 3d8d304..611f25e 100644 --- a/pagure/exceptions.py +++ b/pagure/exceptions.py @@ -44,3 +44,9 @@ class BranchNotFoundException(PagureException): found in a repository. ''' pass + + +class PagureEvException(PagureException): + ''' Exceptions used in the pagure-stream-server. + ''' + pass