2015-09-29 10:10:32 +00:00
|
|
|
# -*- 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."""
|
2018-03-15 08:33:38 +00:00
|
|
|
|
|
|
|
|
|
|
|
class SkipHeartbeat(Exception):
|
|
|
|
"""Raised to prevent the current heartbeat from being sent."""
|
|
|
|
pass
|