Base class for exceptions from the p4 client.
| 782 | |
| 783 | |
| 784 | class P4Exception(Exception): |
| 785 | """Base class for exceptions from the p4 client.""" |
| 786 | |
| 787 | def __init__(self, exit_code): |
| 788 | self.p4ExitCode = exit_code |
| 789 | |
| 790 | |
| 791 | class P4ServerException(P4Exception): |