(self, exit_code, p4_result, limit)
| 804 | """One of the maxresults or maxscanrows errors.""" |
| 805 | |
| 806 | def __init__(self, exit_code, p4_result, limit): |
| 807 | super(P4RequestSizeException, self).__init__(exit_code, p4_result) |
| 808 | self.limit = limit |
| 809 | |
| 810 | |
| 811 | class P4CommandException(P4Exception): |