diff --git a/modules/io/src/mol/pdb_writer.cc b/modules/io/src/mol/pdb_writer.cc index 00778bc0ed64c7ca7a47a0ad4949d80d5218bf1b..181c2ad8ad618941e775118269ee92661e53d74b 100644 --- a/modules/io/src/mol/pdb_writer.cc +++ b/modules/io/src/mol/pdb_writer.cc @@ -422,7 +422,8 @@ void PDBWriter::WriteModelLeader() if (multi_model_) { out_ << "MODEL " << mol_count_ << std::endl; } else if (mol_count_>1) { - throw IOException("Trying to write several models into one file with "); + throw IOException("Trying to write several models into one file without " + "multi model mode enabled!"); } }