We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6d4ba59 commit bfbd7efCopy full SHA for bfbd7ef
src/prpy/exceptions.py
@@ -4,7 +4,13 @@ class PrPyException(Exception):
4
"""
5
6
7
-class TrajectoryNotExecutable(PrPyException):
+class TrajectoryException(PrPyException):
8
+ """
9
+ Trajectory failed to execute.
10
11
+
12
13
+class TrajectoryNotExecutable(TrajectoryException):
14
15
Trajectory could not begin execution.
16
@@ -17,13 +23,13 @@ class TrajectoryNotExecutable(PrPyException):
17
23
18
24
19
25
20
-class TrajectoryAborted(PrPyException):
26
+class TrajectoryAborted(TrajectoryException):
21
27
22
28
Trajectory was aborted.
29
30
31
-class TrajectoryStalled(PrPyException):
32
+class TrajectoryStalled(TrajectoryException):
33
34
Trajectory stalled.
35
0 commit comments