blob: d0a922db2939557652d747ddcc6ef8cfb12324a5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
|
# coding=utf-8
"""Custom exceptions for cmd2"""
############################################################################################################
# The following exceptions are part of the public API
############################################################################################################
class SkipPostcommandHooks(Exception):
"""
Custom exception class for when a command has a failure bad enough to skip post command
hooks, but not bad enough to print the exception to the user.
"""
pass
class Cmd2ArgparseError(SkipPostcommandHooks):
"""
A ``SkipPostcommandHooks`` exception for when a command fails parsing its arguments.
This is raised by argparse decorators but can also be raised by command functions.
If a command function still needs to run post command hooks when parsing fails,
just return instead of raising an exception.
"""
pass
############################################################################################################
# The following exceptions are NOT part of the public API and are intended for internal use only.
############################################################################################################
class Cmd2ShlexError(Exception):
"""Raised when shlex fails to parse a command line string in StatementParser"""
pass
class EmbeddedConsoleExit(SystemExit):
"""Custom exception class for use with the py command."""
pass
class EmptyStatement(Exception):
"""Custom exception class for handling behavior when the user just presses <Enter>."""
pass
class RedirectionError(Exception):
"""Custom exception class for when redirecting or piping output fails"""
pass
|