# HG changeset patch # User Goffi # Date 1585929747 -7200 # Node ID 5d67502bdc8cfd6dd2f9613bca64027d821bea78 # Parent f981c0e992205b9e01bd16c61210cafcdf0dac5d core (exceptions): new MissingPlugin exception: it is used when a feature needs an inactive or unavailable plugin. diff -r f981c0e99220 -r 5d67502bdc8c sat/core/exceptions.py --- a/sat/core/exceptions.py Wed Apr 01 23:46:46 2020 +0200 +++ b/sat/core/exceptions.py Fri Apr 03 18:02:27 2020 +0200 @@ -60,6 +60,11 @@ pass +class MissingPlugin(Exception): + """A SàT plugin needed for a feature/method is missing""" + pass + + class NotFound(Exception): pass