Files
ptools/util/wxpusher/exceptions.py
2023-05-06 23:38:06 +08:00

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."""