mirror of
https://github.com/kovidgoyal/calibre.git
synced 2025-12-02 11:15:04 -05:00
11 lines
309 B
Python
11 lines
309 B
Python
#!/usr/bin/env python
|
|
# vim:fileencoding=utf-8
|
|
# License: GPL v3 Copyright: 2020, Kovid Goyal <kovid at kovidgoyal.net>
|
|
|
|
|
|
class TTSSystemUnavailable(Exception):
|
|
def __init__(self, message, details):
|
|
Exception.__init__(self, message)
|
|
self.short_msg = message
|
|
self.details = details
|