8 lines
110 B
Python
8 lines
110 B
Python
|
|
import attrs
|
||
|
|
|
||
|
|
|
||
|
|
@attrs.define
|
||
|
|
class DWGFileNotExistError(Exception):
|
||
|
|
not_exist_dwg_file_path: str
|
||
|
|
pass
|