File tree 3 files changed +74
-82
lines changed
3 files changed +74
-82
lines changed Original file line number Diff line number Diff line change @@ -26,24 +26,16 @@ class MANTID_NEXUS_DLL Exception : public std::runtime_error {
26
26
* \param msg the string to pass a the error message
27
27
* \param status
28
28
*/
29
- Exception (const std::string &msg = " GENERIC ERROR" , const NXstatus status = static_cast <NXstatus>(0 ));
30
- /* *
31
- * Get the message associated with the exception
32
- *
33
- * \return the message associated with the exception
34
- */
29
+ Exception (const std::string &msg = " GENERIC ERROR" , const std::string &filename = " UNKNOWN" );
30
+ // / \return the message associated with the exception
35
31
virtual const char *what () const throw() override ;
36
- /* *
37
- * Get the status associated with the exception
38
- *
39
- * \return the status value associated with the exception
40
- */
41
- NXstatus status () const throw();
32
+ // / \return the status value associated with the exception
33
+ const std::string filename () const throw();
42
34
/* * Destructor for exception */
43
35
virtual ~Exception () throw ();
44
36
45
37
private:
46
- std::string m_what; // /< Error message for the exception
47
- NXstatus m_status; // /< Status value for the exception
38
+ std::string m_what; // /< Error message for the exception
39
+ std::string m_filename; // /< File this exceptoin is associated with
48
40
};
49
41
}; // namespace NeXus
Original file line number Diff line number Diff line change 8
8
9
9
namespace NeXus {
10
10
11
- Exception::Exception (const std::string &msg, const NXstatus status )
12
- : std::runtime_error(msg), m_what(msg), m_status(status ) {}
11
+ Exception::Exception (const std::string &msg, const std::string &filename )
12
+ : std::runtime_error(msg), m_what(msg), m_filename(filename ) {}
13
13
14
14
const char *Exception::what () const throw() { return this ->m_what .c_str (); }
15
15
16
- NXstatus Exception::status () const throw() { return this ->m_status ; }
16
+ const std::string Exception::filename () const throw() { return this ->m_filename ; }
17
17
18
18
Exception::~Exception () throw () {}
19
19
You can’t perform that action at this time.
0 commit comments