summaryrefslogtreecommitdiffstats
path: root/meta/lib/oeqa/core/exception.py
diff options
context:
space:
mode:
Diffstat (limited to 'meta/lib/oeqa/core/exception.py')
-rw-r--r--meta/lib/oeqa/core/exception.py14
1 files changed, 14 insertions, 0 deletions
diff --git a/meta/lib/oeqa/core/exception.py b/meta/lib/oeqa/core/exception.py
new file mode 100644
index 0000000000..2dfd8402cf
--- /dev/null
+++ b/meta/lib/oeqa/core/exception.py
@@ -0,0 +1,14 @@
1# Copyright (C) 2016 Intel Corporation
2# Released under the MIT license (see COPYING.MIT)
3
4class OEQAException(Exception):
5 pass
6
7class OEQATimeoutError(OEQAException):
8 pass
9
10class OEQAMissingVariable(OEQAException):
11 pass
12
13class OEQADependency(OEQAException):
14 pass