1 /* Copyright (C) 2006-2008 Joris Mooij [joris dot mooij at tuebingen dot mpg dot de]
2 Radboud University Nijmegen, The Netherlands /
3 Max Planck Institute for Biological Cybernetics, Germany
5 This file is part of libDAI.
7 libDAI is free software; you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
9 the Free Software Foundation; either version 2 of the License, or
10 (at your option) any later version.
12 libDAI is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 GNU General Public License for more details.
17 You should have received a copy of the GNU General Public License
18 along with libDAI; if not, write to the Free Software
19 Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
24 /// \brief Defines Exception class and the DAI_THROW macro
25 /// \todo Improve documentation
28 #ifndef __defined_libdai_exceptions_h
29 #define __defined_libdai_exceptions_h
39 #define DAI_QUOTE(x) #x
42 #define DAI_TOSTRING(x) DAI_QUOTE(x)
44 /// Macro that simplifies throwing an exception with a useful error message.
45 /** \param cod Corresponds to one of the enum values in dai::Exception::codes
49 * DAI_THROW(NOT_IMPLEMENTED);
52 #define DAI_THROW(cod) throw dai::Exception(dai::Exception::cod, std::string(__FILE__ ", line " DAI_TOSTRING(__LINE__)))
54 /// Macro that simplifies throwing an exception with a useful error message. It also allows for writing a detailed error message to stderr.
55 /** \param cod Corresponds to one of the enum values in dai::Exception::codes
56 * \param msg Detailed error message that will be written to std::cerr.
60 * DAI_THROWE(NOT_IMPLEMENTED,"Detailed error message");
63 #define DAI_THROWE(cod,msg) throw dai::Exception(dai::Exception::cod, std::string(__FILE__ ", line " DAI_TOSTRING(__LINE__)), msg)
69 /// Represents an exception (based on std::runtime_error)
70 class Exception
: public std::runtime_error
{
72 /// Enumeration of exceptions used in libDAI
73 enum Code
{NOT_IMPLEMENTED
,
74 UNKNOWN_DAI_ALGORITHM
,
75 UNKNOWN_PROPERTY_TYPE
,
80 INVALID_FACTORGRAPH_FILE
,
81 NOT_ALL_PROPERTIES_SPECIFIED
,
83 FACTORGRAPH_NOT_CONNECTED
,
88 INVALID_EVIDENCE_FILE
,
90 UNKNOWN_PARAMETER_ESTIMATION_METHOD
,
92 NUM_ERRORS
}; // NUM_ERRORS should be the last entry
95 Exception( Code _code
, const std::string
& msg
="", const std::string
& detailedMsg
="" ) : std::runtime_error(ErrorStrings
[_code
] + " [" + msg
+ "]"), errorcode(_code
) {
96 if( !detailedMsg
.empty() )
97 std::cerr
<< "ERROR: " << detailedMsg
<< std::endl
;
101 Exception( const Exception
&e
) : std::runtime_error(e
), errorcode(e
.errorcode
) {}
103 /// Returns error code of this exception
104 Code
code() const { return errorcode
; }
108 /// Contains the error code of this exception
111 /// Error messages corresponding to the exceptions enumerated above
112 static std::string ErrorStrings
[NUM_ERRORS
];