python-by-example-150-chall.../venv/lib/python3.6/site-packages/pandas/io/clipboard/exceptions.py

12 lines
247 B
Python
Raw Normal View History

2019-08-04 20:26:35 +08:00
import ctypes
class PyperclipException(RuntimeError):
pass
class PyperclipWindowsException(PyperclipException):
def __init__(self, message):
message += " ({err})".format(err=ctypes.WinError())
super().__init__(message)