mirror of
https://github.com/freedombox/FreedomBox.git
synced 2026-01-28 08:03:36 +00:00
11 lines
190 B
Python
11 lines
190 B
Python
""" Plinth project specific errors """
|
|
|
|
|
|
class PlinthError(Exception):
|
|
pass
|
|
|
|
|
|
class ActionError(PlinthError):
|
|
""" Use this error for exceptions when executing an action """
|
|
pass
|