Mercurial > p > roundup > code
diff roundup/cgi/exceptions.py @ 6638:e1588ae185dc issue2550923_computed_property
merge from default branch. Fix travis.ci so CI builds don't error out
| author | John Rouillard <rouilj@ieee.org> |
|---|---|
| date | Thu, 21 Apr 2022 16:54:17 -0400 |
| parents | 91ab3e0ffcd0 |
| children | a1cffeef5f87 |
line wrap: on
line diff
--- a/roundup/cgi/exceptions.py Fri Oct 08 00:37:16 2021 -0400 +++ b/roundup/cgi/exceptions.py Thu Apr 21 16:54:17 2022 -0400 @@ -54,6 +54,11 @@ """ pass +class IndexerQueryError(RoundupException): + """Raised to handle errors from FTS searches due to query + syntax errors. + """ + pass class SendFile(RoundupException): """Send a file from the database."""
