chinese_llama2_demo/sample/exception.py

9 lines
196 B
Python
Raw Normal View History

2023-09-14 17:31:11 +08:00
class AssembleHeaderException(Exception):
def __init__(self, msg):
self.message = msg
class FileNotFoundException(Exception):
def __init__(self, msg):
self.message = msg