mirror of
https://github.com/wakatime/sublime-wakatime.git
synced 2023-08-10 21:13:02 +03:00
20 lines
388 B
Python
20 lines
388 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."""
|
||
|
|
||
|
|
||
|
class SkipHeartbeat(Exception):
|
||
|
"""Raised to prevent the current heartbeat from being sent."""
|
||
|
pass
|