Home
last modified time | relevance | path

Searched refs:SmilesParseException (Results 1 – 12 of 12) sorted by relevance

/dports/science/rdkit/rdkit-Release_2021_03_5/Code/GraphMol/SmilesParse/
H A DSmilesParse.h103 class RDKIT_SMILESPARSE_EXPORT SmilesParseException : public std::exception {
105 SmilesParseException(const char *msg) : _msg(msg){}; in SmilesParseException() function
106 SmilesParseException(const std::string msg) : _msg(msg){}; in SmilesParseException() function
108 ~SmilesParseException() noexcept {}; in ~SmilesParseException()
H A DSmilesParse.cpp78 throw SmilesParseException(errout.str()); in smarts_parse_helper()
127 throw SmilesParseException(errout.str()); in smiles_parse_helper()
131 throw SmilesParseException("extra open parentheses"); in smiles_parse_helper()
237 } catch (SmilesParseException &e) { in toMol()
265 } catch (SmilesParseException &e) { in toAtom()
285 } catch (SmilesParseException &e) { in toBond()
H A Dcxsmiles_test.cpp513 } catch (const SmilesParseException &) { in testErrorsInCXSmiles()
614 } catch (const RDKit::SmilesParseException &) { in testLinknodesInCXSmiles()
H A DCXSmilesOps.cpp69 throw RDKit::SmilesParseException( in read_text_to()
785 throw RDKit::SmilesParseException("failure parsing CXSMILES extensions"); in parseCXExtensions()
H A DSmilesParseOps.cpp70 throw SmilesParseException(message); in ReportParseError()
/dports/science/rdkit/rdkit-Release_2021_03_5/Code/JavaWrappers/
H A DRDKitExceptions.i113 %typemap(javabase) RDKit::SmilesParseException "java.lang.RuntimeException";
114 %typemap(throws, throws="org.RDKit.SmilesParseException") RDKit::SmilesParseException {
120 %typemap(javacode) RDKit::SmilesParseException %{
181 } catch (RDKit::SmilesParseException &e) { in catch()
/dports/science/rdkit/rdkit-Release_2021_03_5/Code/JavaWrappers/gmwrapper/src-test/org/RDKit/
H A DWrapperTests.java114 SmilesParseException parse = new SmilesParseException("some error message"); in testBasicInstantiation_SmilesParseException()
286 SmilesParseException e = new SmilesParseException(TEST_MESSAGE); in testSmilesParseException()
/dports/science/rdkit/rdkit-Release_2021_03_5/Code/JavaWrappers/csharp_wrapper/
H A DGraphMolCSharp.i120 catch (RDKit::SmilesParseException e) { in catch()
186 %shared_ptr(RDKit::SmilesParseException)
/dports/science/rdkit/rdkit-Release_2021_03_5/Code/GraphMol/FileParsers/
H A DSmilesMolSupplier.cpp165 throw SmilesParseException(errout.str()); in processLine()
209 } catch (const SmilesParseException &pe) { in processLine()
H A DMultithreadedSmilesMolSupplier.cpp173 throw SmilesParseException(errout.str()); in processMoleculeRecord()
/dports/science/rdkit/rdkit-Release_2021_03_5/Code/JavaWrappers/gmwrapper/
H A DGraphMolJava.i139 %shared_ptr(RDKit::SmilesParseException)
/dports/science/rdkit/rdkit-Release_2021_03_5/Code/GraphMol/MolChemicalFeatures/
H A DFeatureParser.cpp83 } catch (SmilesParseException &) { in expandAndTestSmarts()