2012-08-06 21:16:53 +02:00
|
|
|
/*
|
|
|
|
* Created by Phil on 5/8/2012.
|
|
|
|
* Copyright 2012 Two Blue Cubes Ltd. All rights reserved.
|
|
|
|
*
|
|
|
|
* Distributed under the Boost Software License, Version 1.0. (See accompanying
|
|
|
|
* file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
|
|
|
|
*/
|
|
|
|
#ifndef TWOBLUECUBES_CATCH_NOTIMPLEMENTED_EXCEPTION_HPP_INCLUDED
|
|
|
|
#define TWOBLUECUBES_CATCH_NOTIMPLEMENTED_EXCEPTION_HPP_INCLUDED
|
2012-08-06 09:33:15 +02:00
|
|
|
|
2012-08-06 21:16:53 +02:00
|
|
|
#include "catch_notimplemented_exception.h"
|
2017-02-12 13:34:55 +01:00
|
|
|
#include <sstream>
|
2012-08-06 09:33:15 +02:00
|
|
|
|
2012-08-06 21:16:53 +02:00
|
|
|
namespace Catch {
|
2012-08-06 09:33:15 +02:00
|
|
|
|
2013-04-23 19:58:56 +02:00
|
|
|
NotImplementedException::NotImplementedException( SourceLineInfo const& lineInfo )
|
2012-08-06 21:16:53 +02:00
|
|
|
: m_lineInfo( lineInfo ) {
|
|
|
|
std::ostringstream oss;
|
2013-01-13 22:51:44 +01:00
|
|
|
oss << lineInfo << ": function ";
|
2012-08-06 21:16:53 +02:00
|
|
|
oss << "not implemented";
|
|
|
|
m_what = oss.str();
|
|
|
|
}
|
2012-08-06 09:33:15 +02:00
|
|
|
|
2014-03-20 12:48:19 +01:00
|
|
|
const char* NotImplementedException::what() const CATCH_NOEXCEPT {
|
2012-08-06 21:16:53 +02:00
|
|
|
return m_what.c_str();
|
|
|
|
}
|
2013-07-03 20:14:59 +02:00
|
|
|
|
2012-08-06 21:16:53 +02:00
|
|
|
} // end namespace Catch
|
|
|
|
|
2012-09-17 07:42:29 +02:00
|
|
|
#endif // TWOBLUECUBES_CATCH_NOTIMPLEMENTED_EXCEPTION_HPP_INCLUDED
|