Added plotwindoeexceptions to version control
This commit is contained in:
parent
ea724749ba
commit
7ce7d18daf
21
ComplexPlotting/PlotWindowException.hpp
Normal file
21
ComplexPlotting/PlotWindowException.hpp
Normal file
|
@ -0,0 +1,21 @@
|
|||
#pragma once
|
||||
|
||||
#include "PlotWindow.hpp"
|
||||
|
||||
class PlotWindowException :
|
||||
public std::exception
|
||||
{
|
||||
public:
|
||||
PlotWindowException(const char* message, PlotWindow* src) :
|
||||
std::exception(message), src(src)
|
||||
{
|
||||
}
|
||||
|
||||
PlotWindow* where() const noexcept
|
||||
{
|
||||
return src;
|
||||
}
|
||||
|
||||
protected:
|
||||
PlotWindow* src;
|
||||
};
|
Loading…
Reference in a new issue