mirror of
https://github.com/ParadiseSS13/Paradise.git
synced 2025-12-21 15:51:31 +00:00
12 lines
265 B
Python
12 lines
265 B
Python
import ctypes
|
|
|
|
|
|
class PyperclipException(RuntimeError):
|
|
pass
|
|
|
|
|
|
class PyperclipWindowsException(PyperclipException):
|
|
def __init__(self, message):
|
|
message += " (%s)" % ctypes.WinError()
|
|
super(PyperclipWindowsException, self).__init__(message)
|