Difficult-Rocket/libs/pyglet/media/drivers/directsound/exceptions.py

14 lines
325 B
Python
Raw Normal View History

2021-04-16 23:21:06 +08:00
from pyglet.media.exceptions import MediaException
class DirectSoundException(MediaException):
pass
class DirectSoundNativeError(DirectSoundException):
def __init__(self, hresult):
self.hresult = hresult
def __repr__(self):
return "{}: Error {}".format(self.__class__.__name__, self.hresult)