RDKit
Open-source cheminformatics and machine learning.
BadFileException.h
Go to the documentation of this file.
1 //
2 // Copyright 2003-2006 Greg Landrum and 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_BADFILEEXCEPTION_H
11 #define _RD_BADFILEEXCEPTION_H
12 
13 #include <string>
14 #include <vector>
15 #include <stdexcept>
16 
17 namespace RDKit {
18 
19  //! used by various file parsing classes to indicate a bad file
20  class BadFileException : public std::runtime_error {
21  public :
22  //! construct with an error message
23  explicit BadFileException(const char *msg) : std::runtime_error("BadFileException"), _msg(msg) {};
24  //! construct with an error message
25  explicit BadFileException(const std::string msg) : std::runtime_error("BadFileException"), _msg(msg) {};
26  //! get the error message
27  const char *message () const { return _msg.c_str(); };
28  ~BadFileException () throw () {};
29 
30  private :
31  std::string _msg;
32  };
33 }
34 
35 #endif
const char * message() const
get the error message
used by various file parsing classes to indicate a bad file
BadFileException(const std::string msg)
construct with an error message
STL namespace.
Includes a bunch of functionality for handling Atom and Bond queries.
Definition: Atom.h:28
BadFileException(const char *msg)
construct with an error message