Home
last modified time | relevance | path

Searched refs:DXFStructureError (Results 1 – 25 of 59) sorted by relevance

123

/dports/cad/py-ezdxf/ezdxf-0.16.3/tests/test_00_dxf_low_level_structs/
H A Dtest_051_load_dxf_structure.py7 from ezdxf.lldxf.const import DXFStructureError
35 with pytest.raises(DXFStructureError):
38 with pytest.raises(DXFStructureError):
62 with pytest.raises(DXFStructureError):
67 with pytest.raises(DXFStructureError):
70 with pytest.raises(DXFStructureError):
75 with pytest.raises(DXFStructureError):
80 with pytest.raises(DXFStructureError):
H A Dtest_042_tags_loader.py6 …ezdxf.lldxf.tagger import internal_tag_compiler, ascii_tags_loader, tag_compiler, DXFStructureError
140 with pytest.raises(DXFStructureError):
/dports/cad/py-ezdxf/ezdxf-0.16.3/src/ezdxf/lldxf/
H A Dloader.py7 from .const import DXFStructureError
92 raise DXFStructureError(
102 raise DXFStructureError(
108 raise DXFStructureError(
124 raise DXFStructureError("DXFStructureError: missing ENDSEC tag.")
126 raise DXFStructureError('DXFStructureError: missing EOF tag.')
H A Dtagger.py9 from .const import DXFStructureError
106 raise DXFStructureError(
142 raise DXFStructureError('Not a binary DXF data structure.')
277 raise DXFStructureError(
290 raise DXFStructureError(
301 raise DXFStructureError(
318 raise DXFStructureError(error_msg(x))
320 raise DXFStructureError(error_msg(x))
H A Dfileindex.py5 from .const import DXFStructureError
96 raise DXFStructureError(f'Invalid group code in line {line}')
99 raise DXFStructureError(f'Invalid group code {code} in line {line}')
146 raise DXFStructureError(f'Unexpected end of file.')
H A Dtags.py17 from .const import DXFStructureError, DXFValueError, STRUCTURE_MARKER
380 raise DXFStructureError(
408 raise DXFStructureError(
412 raise DXFStructureError(
H A Dconst.py59 class DXFStructureError(DXFError): class
63 class DXFAppDataError(DXFStructureError):
67 class DXFXDataError(DXFStructureError):
/dports/cad/py-ezdxf/ezdxf-0.16.3/src/ezdxf/
H A Dexplode.py8 from ezdxf.lldxf.const import DXFStructureError, DXFTypeError
51 raise DXFStructureError('Target layout is None.')
54 raise DXFStructureError(
191 raise DXFStructureError(
224 raise DXFStructureError(
229 raise DXFStructureError(
235 raise DXFStructureError(
H A Drecover.py482 raise const.DXFStructureError(
630 raise const.DXFStructureError(
658 raise const.DXFStructureError(
669 raise const.DXFStructureError(
704 raise const.DXFStructureError(error_msg(x))
709 raise const.DXFStructureError(error_msg(x))
711 raise const.DXFStructureError(error_msg(x))
/dports/cad/py-ezdxf/ezdxf-0.16.3/src/ezdxf/entities/
H A Didbuffer.py4 from ezdxf.lldxf.const import SUBCLASS_MARKER, DXFStructureError
39 raise DXFStructureError(
76 raise DXFStructureError(
107 raise DXFStructureError(
H A Ddxfobj.py7 from ezdxf.lldxf.const import DXF2000, DXFStructureError, SUBCLASS_MARKER
85 raise DXFStructureError(
222 raise DXFStructureError(
225 raise DXFStructureError(
H A Dmesh.py13 SUBCLASS_MARKER, DXF2000, DXFValueError, DXFStructureError,
214 raise DXFStructureError(
226 raise DXFStructureError(COUNT_ERROR_MSG.format(handle, 'face'))
238 raise DXFStructureError(COUNT_ERROR_MSG.format(handle, 'edge'))
250 raise DXFStructureError(
H A Dxdict.py5 from ezdxf.lldxf.const import DXFStructureError
75 raise DXFStructureError("ACAD_XDICTIONARY error.")
H A Dappdata.py7 from ezdxf.lldxf.const import DXFKeyError, DXFStructureError
94 raise DXFStructureError("ACAD_REACTORS error")
/dports/cad/py-ezdxf/ezdxf-0.16.3/docs/source/drawing/
H A Drecover.rst29 except ezdxf.DXFStructureError:
47 :class:`DXFStructureError` exception will be raised, because for many use
72 except ezdxf.DXFStructureError:
88 except ezdxf.DXFStructureError:
116 except ezdxf.DXFStructureError:
139 except ezdxf.DXFStructureError:
163 except ezdxf.DXFStructureError:
183 except ezdxf.DXFStructureError:
/dports/cad/py-ezdxf/ezdxf-0.16.3/tools/
H A Dfind_unused_blocks.py33 except ezdxf.DXFStructureError:
37 except ezdxf.DXFStructureError:
/dports/graphics/blender/blender-2.91.0/release/scripts/addons/io_import_dxf/dxfgrabber/
H A Dtags.py26 class DXFStructureError(Exception): class
158 … raise DXFStructureError("Missing required y coordinate near line: {}.".format(line.counter))
170 … raise DXFStructureError('Invalid floating point values near line: {}.'.format(line.counter))
176 … raise DXFStructureError('Invalid tag (code={code}, value="{value}") near line: {line}.'.format(
358 … raise DXFStructureError("Missing closing DXFTag(102, '}') for appdata structure.")
389 raise DXFStructureError("Unexpected tag '%r' at end of entity." % tag)
/dports/cad/py-ezdxf/ezdxf-0.16.3/tests/test_01_dxf_entities/
H A Dtest_105_xdata.py6 from ezdxf.lldxf.const import DXFValueError, DXFStructureError
369 with pytest.raises(DXFStructureError):
374 with pytest.raises(DXFStructureError):
/dports/cad/py-ezdxf/ezdxf-0.16.3/src/ezdxf/addons/
H A Diterdxf.py8 from ezdxf.lldxf.const import DXFStructureError
54 raise DXFStructureError('ENTITIES section not found.')
56 raise DXFStructureError('OBJECTS section not found.')
104 raise DXFStructureError(f'ENDSEC of OBJECTS section not found.')
413 raise DXFStructureError(f'Invalid group code')
/dports/cad/py-ezdxf/ezdxf-0.16.3/src/ezdxf/sections/
H A Dentities.py7 from ezdxf.lldxf.tags import DXFStructureError
58 raise DXFStructureError(
H A Dtables.py5 from ezdxf.lldxf.const import DXFStructureError, DXF12
61 raise DXFStructureError("Critical structure error in TABLES section.")
H A Dclasses.py6 from ezdxf.lldxf.const import DXFStructureError, DXF2004, DXF2000, DXFKeyError
170 raise DXFStructureError(
/dports/cad/py-ezdxf/ezdxf-0.16.3/src/ezdxf/layouts/
H A Dbase.py7 DXFStructureError,
196 raise DXFStructureError(
299 raise DXFStructureError(
/dports/cad/py-ezdxf/ezdxf-0.16.3/profiling/
H A Dstress.py31 except ezdxf.DXFStructureError:
83 except ezdxf.DXFStructureError:
/dports/cad/py-ezdxf/ezdxf-0.16.3/src/ezdxf/pp/
H A Dpprint.py11 from ezdxf.lldxf.const import DXFError, DXFStructureError
83 except DXFStructureError as e:

123