mirror of
https://github.com/ngfchl/ptools
synced 2023-07-10 13:41:22 +08:00
18 lines
332 B
Python
18 lines
332 B
Python
#!/usr/bin/env python
|
|
# -*- coding: utf-8 -*-
|
|
"""
|
|
WxPusher Exceptions.
|
|
|
|
File: exceptions.py
|
|
Author: huxuan
|
|
Email: i(at)huxuan.org
|
|
"""
|
|
|
|
|
|
class WxPusherException(Exception):
|
|
"""WxPusher specific base exception."""
|
|
|
|
|
|
class WxPusherNoneTokenException(WxPusherException):
|
|
"""Raised when both token and default token are None."""
|