mirror of
git://git.yoctoproject.org/poky.git
synced 2025-07-19 21:09:03 +02:00

The only two that we need are ShellSyntaxError and ShellError, others are not used, so remove them. (Bitbake rev: abee2ff5ee71bf8c3221cd9d3cd4243ebb4ca273) Signed-off-by: Robert Yang <liezhi.yang@windriver.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
16 lines
349 B
Python
16 lines
349 B
Python
# sherrors.py - shell errors and signals
|
|
#
|
|
# Copyright 2007 Patrick Mezard
|
|
#
|
|
# This software may be used and distributed according to the terms
|
|
# of the GNU General Public License, incorporated herein by reference.
|
|
|
|
"""Define shell exceptions and error codes.
|
|
"""
|
|
|
|
class ShellError(Exception):
|
|
pass
|
|
|
|
class ShellSyntaxError(ShellError):
|
|
pass
|