mirror of
https://github.com/jxxghp/MoviePilot.git
synced 2026-04-29 05:03:05 +08:00
7 lines
189 B
Python
7 lines
189 B
Python
class ImmediateException(Exception):
|
|
"""
|
|
用于立即抛出异常而不重试的特殊异常类。
|
|
当不希望使用重试机制时,可以抛出此异常。
|
|
"""
|
|
pass
|