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_H_INCLUDED
|
|
|
|
#define TWOBLUECUBES_CATCH_NOTIMPLEMENTED_EXCEPTION_H_INCLUDED
|
2012-08-06 09:33:15 +02:00
|
|
|
|
2012-08-06 21:16:53 +02:00
|
|
|
#include "catch_common.h"
|
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
|
|
|
|
2012-08-06 21:16:53 +02:00
|
|
|
class NotImplementedException : public std::exception
|
|
|
|
{
|
|
|
|
public:
|
2013-04-23 19:58:56 +02:00
|
|
|
NotImplementedException( SourceLineInfo const& lineInfo );
|
2014-05-19 19:57:14 +02:00
|
|
|
NotImplementedException( NotImplementedException const& ) {}
|
2012-08-06 09:33:15 +02:00
|
|
|
|
2014-03-20 12:48:19 +01:00
|
|
|
virtual ~NotImplementedException() CATCH_NOEXCEPT {}
|
2012-08-06 21:16:53 +02:00
|
|
|
|
2014-03-20 12:48:19 +01:00
|
|
|
virtual const char* what() const CATCH_NOEXCEPT;
|
2012-08-06 21:16:53 +02:00
|
|
|
|
|
|
|
private:
|
|
|
|
std::string m_what;
|
|
|
|
SourceLineInfo m_lineInfo;
|
|
|
|
};
|
|
|
|
|
|
|
|
} // end namespace Catch
|
|
|
|
|
|
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
|
|
#define CATCH_NOT_IMPLEMENTED throw Catch::NotImplementedException( CATCH_INTERNAL_LINEINFO )
|
|
|
|
|
|
|
|
#endif // TWOBLUECUBES_CATCH_NOTIMPLEMENTED_EXCEPTION_H_INCLUDED
|