/pypy/rlib/rstruct/error.py
https://bitbucket.org/dac_io/pypy · Python · 22 lines · 15 code · 7 blank · 0 comment · 0 complexity · a33b02a2dbb7127626c438ce5827aa09 MD5 · raw file
- class StructError(Exception):
- "Interp-level error that gets mapped to an app-level struct.error."
- def __init__(self, msg):
- self.msg = msg
- def __str__(self):
- return self.msg
- def at_applevel(self, space):
- from pypy.interpreter.error import OperationError
- w_module = space.getbuiltinmodule('struct')
- w_error = space.getattr(w_module, space.wrap('error'))
- return OperationError(w_error, space.wrap(self.msg))
- class StructOverflowError(StructError):
- def at_applevel(self, space):
- from pypy.interpreter.error import OperationError
- return OperationError(space.w_OverflowError, space.wrap(self.msg))