File indexing completed on 2024-04-28 05:02:30

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   : m_msg(msg)
0013   , m_file(file)
0014   , m_line(line)
0015 
0016 {
0017     // qDebug("ALKEXCEPTION(%s,%s,%ul)", qPrintable(msg), qPrintable(file), line);
0018 }
0019 
0020 AlkException::~AlkException()
0021 {
0022 }