1#!/usr/bin/env python3
2#
3# Copyright (C) 2021-2022 Intel Corporation.
4#
5# SPDX-License-Identifier: BSD-3-Clause
6#
7
8class ResourceError(Exception):
9    """Raise this error when it is out of resource"""
10
11class SettingError(Exception):
12    """Raise this error when manual scenario configuration has a conflict with board information"""