mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-11 13:46:43 +00:00
50 lines
1.1 KiB
C
50 lines
1.1 KiB
C
|
// -*- C++ -*-
|
||
|
/**
|
||
|
* \file ExceptionMessage.h
|
||
|
* This file is part of LyX, the document processor.
|
||
|
* Licence details can be found in the file COPYING.
|
||
|
*
|
||
|
* \author Abdelrazak Younes
|
||
|
*
|
||
|
* Full author contact details are available in file CREDITS.
|
||
|
*
|
||
|
* A store of the paths to the various different directoies used
|
||
|
* by LyX. These paths differ markedly from one OS to another,
|
||
|
* following the local Windows, MacOS X or Posix conventions.
|
||
|
*/
|
||
|
#ifndef LYX_MESSAGE_H
|
||
|
#define LYX_MESSAGE_H
|
||
|
|
||
|
#include "support/docstring.h"
|
||
|
|
||
|
#include <exception>
|
||
|
|
||
|
namespace lyx {
|
||
|
namespace support {
|
||
|
|
||
|
|
||
|
enum ExceptionType {
|
||
|
ErrorException,
|
||
|
WarningException
|
||
|
};
|
||
|
|
||
|
|
||
|
class ExceptionMessage: public std::exception {
|
||
|
public:
|
||
|
ExceptionMessage(ExceptionType type, docstring const & title,
|
||
|
docstring const & details)
|
||
|
: exception((to_utf8(title) + "\n" + to_utf8(details)).c_str()),
|
||
|
type_(type), title_(title), details_(details) {}
|
||
|
|
||
|
virtual ~ExceptionMessage() {}
|
||
|
|
||
|
ExceptionType type_;
|
||
|
docstring title_;
|
||
|
docstring details_;
|
||
|
};
|
||
|
|
||
|
} // namespace support
|
||
|
} // namespace lyx
|
||
|
|
||
|
#endif // LYX_MESSAGE_H
|