RDKit
Open-source cheminformatics and machine learning.
TooManyNodesException.h
Go to the documentation of this file.
1 //
2 //
3 // Copyright (C) 2020 Schrödinger, LLC
4 //
5 // @@ All Rights Reserved @@
6 // This file is part of the RDKit.
7 // The contents are covered by the terms of the BSD license
8 // which is included in the file license.txt, found at the root
9 // of the RDKit source tree.
10 //
11 #pragma once
12 
13 #include <stdexcept>
14 #include <string>
15 
16 namespace RDKit {
17 namespace CIPLabeler {
18 
19 class TooManyNodesException : public std::runtime_error {
20 public:
21  TooManyNodesException(const std::string &msg) : std::runtime_error(msg){};
22 };
23 
24 } // namespace CIPLabeler
25 } // namespace RDKit
Std stuff.
Definition: Abbreviations.h:17