File indexing completed on 2024-04-28 16:13:25

0001 /*
0002     SPDX-FileCopyrightText: 2000-2018 Thomas Baumgart tbaumgart @kde.org
0003 
0004     This file is part of libalkimia.
0005 
0006     SPDX-License-Identifier: GPL-2.0-or-later
0007 */
0008 
0009 #include "alkexception.h"
0010 
0011 AlkException::AlkException(const QString &msg, const QString &file, const unsigned long line)
0012 {
0013     // qDebug("ALKEXCEPTION(%s,%s,%ul)", qPrintable(msg), qPrintable(file), line);
0014     m_msg = msg;
0015     m_file = file;
0016     m_line = line;
0017 }
0018 
0019 AlkException::~AlkException()
0020 {
0021 }