| Total Complexity | 1 |
| Total Lines | 9 |
| Duplicated Lines | 0 % |
| Changes | 0 | ||
| 1 | class JobException(Exception): |
||
| 34 | class NestedException(RunningProgramException): |
||
| 35 | ''' |
||
| 36 | An exception occured while running the student |
||
| 37 | program. |
||
| 38 | ''' |
||
| 39 | def __init__(self, instance, real_exception, output=None): |
||
| 40 | self.instance = instance |
||
| 41 | self.real_exception = real_exception |
||
| 42 | self.output = output |
||
| 43 | |||
| 58 |