11 lines
241 B
Python
11 lines
241 B
Python
# SPDX-FileCopyrightText: 2021 Blender Studio Tools Authors
|
|
#
|
|
# SPDX-License-Identifier: GPL-3.0-or-later
|
|
|
|
class ShotInvalidException(Exception):
|
|
"""
|
|
Error raised when shot is not valid. For example has no self.id.
|
|
"""
|
|
|
|
pass
|