- it would be really nice is the other packages used the logging support
built into the IMP kernel. This makes controlling the complexity and
where it goes much easier.
- is there a reason that other modules don't use the imp kernel
exception wrappers? Is this something to do with SWIG failing or a
design decision? It seems to me uniformity in exception returns would
also be quite nice.
Notification of IMP commits wrote:
Author: ben@SALILAB.ORG
Date: 2008-09-09 19:31:05 -0700 (Tue, 09 Sep 2008)
New Revision: 715
Added:
trunk/domino/test/test_restraints.py
Modified:
trunk/domino/include/SimpleDiscreteRestraint.h
trunk/domino/pyext/DOMINO.i
trunk/domino/src/SimpleDiscreteRestraint.cpp
Log:
- Have SimpleDiscreteRestraint's constructor throw a proper exception on reading
an invalid format restraints file.
- Add a test case for this exception.
- Have the Python wrapper translate exceptions to Python.
Modified: trunk/domino/include/SimpleDiscreteRestraint.h
===================================================================
--- trunk/domino/include/SimpleDiscreteRestraint.h 2008-09-10 01:34:59 UTC (rev 714)
+++ trunk/domino/include/SimpleDiscreteRestraint.h 2008-09-10 02:31:05 UTC (rev 715)
@@ -27,6 +27,9 @@
class IMPDOMINOEXPORT SimpleDiscreteRestraint : public Restraint
{
public:
+ //! Constructor.
+ /** \exception ErrorException the restraint file is of an invalid format.
+ */
SimpleDiscreteRestraint(Model& model_, std::string restraint_filename,
Particle *p1, Particle *p2);