Use Meshio to read the grid data(.nas) generated by Comsol, KeyError: 'wedge15'

The code is as follows:

> import meshio
> nas = meshio.read("mesh/file_name.nas")

An error is reported after the running:

Traceback (most recent call last):
  File "/opt/project/learn_fenics/meshtrans.py", line 2, in <module>
>   nas = meshio.read("mesh/file_name.nas")
>   File "/root/.local/lib/python3.8/site-packages/meshio/_helpers.py", line 71, in read
>     return _read_file(Path(filename), file_format)
>   File "/root/.local/lib/python3.8/site-packages/meshio/_helpers.py", line 103, in _read_file
>     return reader_map[file_format](str(path))
>   File "/root/.local/lib/python3.8/site-packages/meshio/nastran/_nastran.py", line 50, in read
>     out = read_buffer(f)
>   File "/root/.local/lib/python3.8/site-packages/meshio/nastran/_nastran.py", line 255, in read_buffer
>     cells[k] = CellBlock(c[0], np.array(c[1], dtype=int))
>   File "/root/.local/lib/python3.8/site-packages/meshio/_mesh.py", line 99, in __init__
>     self.dim = topological_dimension[cell_type]
> KeyError: 'wedge15'

What does this error mean? Can’t meshio read a wedge mesh with 15 nodes?
How to use meshio to read .nas mesh? Btw, the mesh(.stl) exported from the same comsol model can be read smoothly.
Looking forward to the answer.Big thanks!

This is not a meshio support forum. Please contact the meshio developer at GitHub · Where software is built

Most likely, yes, by looking at the error message.