Skip to content

Commit 53a36ce

Browse files
Change the member variables for NexusException
The NXstatus is frequently not used or normally NX_ERROR. This adds a member variable for the filename that the exceptoin was created from.
1 parent 5a17375 commit 53a36ce

File tree

3 files changed

+74
-82
lines changed

3 files changed

+74
-82
lines changed

Framework/Nexus/inc/MantidNexus/NeXusException.hpp

+6-14
Original file line numberDiff line numberDiff line change
@@ -26,24 +26,16 @@ class MANTID_NEXUS_DLL Exception : public std::runtime_error {
2626
* \param msg the string to pass a the error message
2727
* \param status
2828
*/
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
3531
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();
4234
/** Destructor for exception */
4335
virtual ~Exception() throw();
4436

4537
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
4840
};
4941
}; // namespace NeXus

Framework/Nexus/src/NeXusException.cpp

+3-3
Original file line numberDiff line numberDiff line change
@@ -8,12 +8,12 @@
88

99
namespace NeXus {
1010

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) {}
1313

1414
const char *Exception::what() const throw() { return this->m_what.c_str(); }
1515

16-
NXstatus Exception::status() const throw() { return this->m_status; }
16+
const std::string Exception::filename() const throw() { return this->m_filename; }
1717

1818
Exception::~Exception() throw() {}
1919

0 commit comments

Comments
 (0)