blob: d00aef6a87f020c55d0d82edda5e870e6f42d003 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
# Copyright 2016 Free Software Foundation, Inc.
# This file is part of GNU Radio
#
# SPDX-License-Identifier: GPL-2.0-or-later
#
from __future__ import absolute_import, print_function
class GRCError(Exception):
"""Generic error class"""
class BlockLoadError(GRCError):
"""Error during block loading"""
class TemplateError(BlockLoadError):
"""Mako Template Error"""
|