initial commit
This commit is contained in:
commit
9d20827c46
2469 changed files with 470994 additions and 0 deletions
47
third-party/JsonQt/lib/ParseException.cpp
vendored
Normal file
47
third-party/JsonQt/lib/ParseException.cpp
vendored
Normal file
|
|
@ -0,0 +1,47 @@
|
|||
/* LICENSE NOTICE
|
||||
Copyright (c) 2008, Frederick Emmott <mail@fredemmott.co.uk>
|
||||
|
||||
Permission to use, copy, modify, and/or distribute this software for any
|
||||
purpose with or without fee is hereby granted, provided that the above
|
||||
copyright notice and this permission notice appear in all copies.
|
||||
|
||||
THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
|
||||
WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
|
||||
MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
|
||||
ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
|
||||
WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
|
||||
ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
|
||||
OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
|
||||
*/
|
||||
#include "ParseException.h"
|
||||
|
||||
// For QObject::tr
|
||||
#include <QObject>
|
||||
|
||||
#include "psilogger.h"
|
||||
|
||||
namespace JsonQt
|
||||
{
|
||||
ParseException::ParseException(const QString& got, const QString& expected, const QString& remaining) throw()
|
||||
:
|
||||
m_got(got),
|
||||
m_expected(expected),
|
||||
m_remaining(remaining)
|
||||
{
|
||||
PsiLogger::instance()->log(QString("JsonQt::ParseException(): got = %1; expected = %2; remaining = %3")
|
||||
.arg(got)
|
||||
.arg(expected)
|
||||
.arg(remaining));
|
||||
}
|
||||
|
||||
ParseException::~ParseException() throw(){}
|
||||
|
||||
const char* ParseException::what() const throw()
|
||||
{
|
||||
return qPrintable(QObject::tr("A parsing error occurred:\n\tGot: '%1'\n\tExpected: '%2'\n\tAt: '%3'").arg(m_got).arg(m_expected).arg(m_remaining));
|
||||
}
|
||||
|
||||
QString ParseException::got() { return m_got; }
|
||||
QString ParseException::expected() { return m_expected; }
|
||||
QString ParseException::remaining() { return m_remaining; }
|
||||
}
|
||||
Reference in a new issue