RDKit
Open-source cheminformatics and machine learning.
FileParseException.h
Go to the documentation of this file.
1 //
2 // Copyright 2003-2006 Rational Discovery LLC
3 //
4 // @@ All Rights Reserved @@
5 // This file is part of the RDKit.
6 // The contents are covered by the terms of the BSD license
7 // which is included in the file license.txt, found at the root
8 // of the RDKit source tree.
9 //
10 #ifndef _RD_FILEPARSEEXCEPTION_H
11 #define _RD_FILEPARSEEXCEPTION_H
12 
13 #include <string>
14 #include <stdexcept>
15 
16 namespace RDKit {
17  //! used by various file parsing classes to indicate a parse error
18  class FileParseException : public std::runtime_error {
19  public:
20  //! construct with an error message
21  explicit FileParseException(const char *msg) : std::runtime_error("FileParseException"), _msg(msg) {};
22  //! construct with an error message
23  explicit FileParseException(const std::string msg) : std::runtime_error("FileParseException"), _msg(msg) {};
24  //! get the error message
25  const char *message () const { return _msg.c_str(); };
26  ~FileParseException () throw () {};
27 
28  private:
29  std::string _msg;
30  };
31 }
32 
33 #endif
34 
STL namespace.
FileParseException(const char *msg)
construct with an error message
Includes a bunch of functionality for handling Atom and Bond queries.
Definition: Atom.h:28
FileParseException(const std::string msg)
construct with an error message
used by various file parsing classes to indicate a parse error
const char * message() const
get the error message