klayout/src/tl/tlException.h

163 lines
4.0 KiB
C++

/*
KLayout Layout Viewer
Copyright (C) 2006-2017 Matthias Koefferlein
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 2 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software
Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
*/
#ifndef HDR_tlException
#define HDR_tlException
#include "tlCommon.h"
#include "tlInternational.h"
#include "tlVariant.h"
namespace tl
{
/**
* @brief The unspecific exception class
*
* This class is the base class for all exceptions in this
* framework. It does not carry further informations except
* a message string that can be created through different
* constructor methods.
*/
class TL_PUBLIC Exception
{
public:
Exception (const std::string &msg)
: m_msg (msg)
{ }
Exception (const std::string &fmt, const std::vector<tl::Variant> &a)
{
init (fmt, a);
}
Exception (const std::string &fmt, const tl::Variant &a1)
{
std::vector<tl::Variant> a;
a.push_back (a1);
init (fmt, a);
}
Exception (const std::string &fmt, const tl::Variant &a1, const tl::Variant &a2)
{
std::vector<tl::Variant> a;
a.push_back (a1);
a.push_back (a2);
init (fmt, a);
}
Exception (const std::string &fmt, const tl::Variant &a1, const tl::Variant &a2, const tl::Variant &a3)
{
std::vector<tl::Variant> a;
a.push_back (a1);
a.push_back (a2);
a.push_back (a3);
init (fmt, a);
}
Exception (const std::string &fmt, const tl::Variant &a1, const tl::Variant &a2, const tl::Variant &a3, const tl::Variant &a4)
{
std::vector<tl::Variant> a;
a.push_back (a1);
a.push_back (a2);
a.push_back (a3);
a.push_back (a4);
init (fmt, a);
}
Exception (const std::string &fmt, const tl::Variant &a1, const tl::Variant &a2, const tl::Variant &a3, const tl::Variant &a4, const tl::Variant &a5)
{
std::vector<tl::Variant> a;
a.push_back (a1);
a.push_back (a2);
a.push_back (a3);
a.push_back (a4);
a.push_back (a5);
init (fmt, a);
}
Exception (const std::string &fmt, const tl::Variant &a1, const tl::Variant &a2, const tl::Variant &a3, const tl::Variant &a4, const tl::Variant &a5, const tl::Variant &a6)
{
std::vector<tl::Variant> a;
a.push_back (a1);
a.push_back (a2);
a.push_back (a3);
a.push_back (a4);
a.push_back (a5);
a.push_back (a6);
init (fmt, a);
}
Exception (const std::string &fmt, const tl::Variant &a1, const tl::Variant &a2, const tl::Variant &a3, const tl::Variant &a4, const tl::Variant &a5, const tl::Variant &a6, const tl::Variant &a7)
{
std::vector<tl::Variant> a;
a.push_back (a1);
a.push_back (a2);
a.push_back (a3);
a.push_back (a4);
a.push_back (a5);
a.push_back (a6);
a.push_back (a7);
init (fmt, a);
}
virtual ~Exception () { }
virtual std::string msg () const { return m_msg; }
private:
std::string m_msg;
void init (const std::string &fmt, const std::vector<tl::Variant> &a);
};
/**
* @brief A "neutral" exception thrown to terminate some operation
* This exception is not shown.
*/
struct CancelException
: public Exception
{
CancelException ()
: Exception (tl::to_string (QObject::tr ("Operation cancelled")))
{ }
};
/**
* @brief A special "internal" exception class used by tl_assert
*/
struct InternalException
: public Exception
{
InternalException (const char *file, int line, const char *cond)
: Exception (tl::to_string (QObject::tr ("Internal error: %s:%d %s was not true")).c_str (), file, line, cond)
{ }
};
} // namespace tl
#endif