Files
TeraHz/backend/venv/lib/python3.6/site-packages/pandas/io/clipboard/exceptions.py
T
2019-01-21 17:36:00 +01:00

13 lines
279 B
Python

import ctypes
class PyperclipException(RuntimeError):
pass
class PyperclipWindowsException(PyperclipException):
def __init__(self, message):
message += " ({err})".format(err=ctypes.WinError())
super(PyperclipWindowsException, self).__init__(message)