python 自定义expection

class PricePolicyInvalid(Exception):
    def __init__(self, msg):
        self.msg = msg

 

你可能感兴趣的