QGIS/python/core/qgserror.sip

83 lines
2.2 KiB
Plaintext
Raw Normal View History

2013-04-08 18:25:44 +02:00
class QgsErrorMessage
{
%TypeHeaderCode
#include <qgserror.h>
%End
public:
2014-01-27 09:22:24 +01:00
/** Format */
2013-04-08 18:25:44 +02:00
enum Format
{
Text, // Plain text
Html
};
QgsErrorMessage();
2014-01-27 09:22:24 +01:00
/** Constructor.
* @param theMessage error message string
* @param theTag error label, for example GDAL, GDAL Provider, Raster layer
* @param theFile the file where error was created
* @param theFunction the function where error was created
* @param theLine the line where error was created
*/
2013-04-08 18:25:44 +02:00
QgsErrorMessage( const QString & theMessage, const QString & theTag = QString::null, const QString & theFile = QString::null, const QString & theFunction = QString::null, int theLine = 0 );
QString message() const;
QString tag() const;
QString file() const;
QString function() const;
int line() const;
};
2014-01-27 09:22:24 +01:00
/** \ingroup core
* QgsError is container for error messages (report). It may contain chain
* (sort of traceback) of error messages (e.g. GDAL - provider - layer).
* Higher level messages are appended at the end.
*/
2013-04-08 18:25:44 +02:00
class QgsError
{
%TypeHeaderCode
#include <qgserror.h>
%End
public:
QgsError();
2014-01-27 09:22:24 +01:00
/** Constructor with single message.
* @param theMessage error message
* @param theTag short description, e.g. GDAL, Provider, Layer
*/
2013-04-08 18:25:44 +02:00
QgsError( const QString & theMessage, const QString & theTag );
2014-01-27 09:22:24 +01:00
/** Append new error message.
* @param theMessage error message string
* @param theTag error label, for example GDAL, GDAL Provider, Raster layer
*/
2013-04-08 18:25:44 +02:00
void append( const QString & theMessage, const QString & theTag );
2014-01-27 09:22:24 +01:00
/** Append new error message.
* @param theMessage error message
*/
2013-04-08 18:25:44 +02:00
void append( const QgsErrorMessage & theMessage );
2014-01-27 09:22:24 +01:00
/** Test if any error is set.
* @return true if contains error
*/
2013-04-08 18:25:44 +02:00
bool isEmpty() const;
2014-01-27 09:22:24 +01:00
/** Full error messages description
* @param theFormat output format
* @return error report
*/
2013-04-08 18:25:44 +02:00
QString message( QgsErrorMessage::Format theFormat = QgsErrorMessage::Html ) const;
/** Short error description, usually the first error in chain, the real error.
2014-01-27 09:22:24 +01:00
* @return error description
*/
2013-04-08 18:25:44 +02:00
QString summary() const;
2014-01-27 09:22:24 +01:00
/** Clear error messages */
2013-04-08 18:25:44 +02:00
void clear();
};