Added plotwindoeexceptions to version control

This commit is contained in:
Robert 2020-08-28 14:56:25 +02:00
parent ea724749ba
commit 7ce7d18daf

View 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;
};