15 lines
278 B
Python
15 lines
278 B
Python
|
# -*- coding: utf-8 -*-
|
||
|
"""
|
||
|
wakatime.exceptions
|
||
|
~~~~~~~~~~~~~~~~~~~
|
||
|
|
||
|
Custom exceptions.
|
||
|
|
||
|
:copyright: (c) 2015 Alan Hamlett.
|
||
|
:license: BSD, see LICENSE for more details.
|
||
|
"""
|
||
|
|
||
|
|
||
|
class NotYetImplemented(Exception):
|
||
|
"""This method needs to be implemented."""
|