Generic PE format error exception.
| 817 | |
| 818 | |
| 819 | class PEFormatError(Exception): |
| 820 | """Generic PE format error exception.""" |
| 821 | |
| 822 | def __init__(self, value): |
| 823 | self.value = value |
| 824 | |
| 825 | def __str__(self): |
| 826 | return repr(self.value) |
| 827 | |
| 828 | |
| 829 | class Dump: |
no outgoing calls
no test coverage detected