blob: 3fe8e47b2c4c0290934a536a26fb541f8d8d6561 [file] [log] [blame]
Patrick Williamsc124f4f2015-09-15 14:41:29 -05001# sherrors.py - shell errors and signals
2#
3# Copyright 2007 Patrick Mezard
4#
5# This software may be used and distributed according to the terms
6# of the GNU General Public License, incorporated herein by reference.
7
8"""Define shell exceptions and error codes.
9"""
10
11class ShellError(Exception):
12 pass
13
14class ShellSyntaxError(ShellError):
15 pass