/**
* Exception
*/
+ DeclException3 (ExcInvalidVertexIndexGmsh,
+ int, int, int,
+ << "While creating cell " << arg1
+ << " (which is numbered as " << arg2
+ << " in the input file), you are referencing a vertex with index " << arg3
+ << " but no vertex with this index has been described in the input file.");
+ /**
+ * Exception
+ */
DeclException0 (ExcInvalidDBMeshFormat);
/**
* Exception
// ---------------------------------------------------------------------
//
-// Copyright (C) 1999 - 2015 by the deal.II authors
+// Copyright (C) 1999 - 2016 by the deal.II authors
//
// This file is part of the deal.II library.
//
material id.
*/
- in >> dummy // ELM-NUMBER
+ unsigned int elm_number;
+ in >> elm_number // ELM-NUMBER
>> cell_type; // ELM-TYPE
switch (gmsh_file_format)
{
AssertThrow (vertex_indices.find (cells.back().vertices[i]) !=
vertex_indices.end(),
- ExcInvalidVertexIndex(cell, cells.back().vertices[i]));
+ ExcInvalidVertexIndexGmsh(cell, elm_number,
+ cells.back().vertices[i]));
// vertex with this index exists
cells.back().vertices[i] = vertex_indices[cells.back().vertices[i]];