Alkimia API

alkexception.cpp
1/*
2 SPDX-FileCopyrightText: 2000-2018 Thomas Baumgart tbaumgart @kde.org
3
4 This file is part of libalkimia.
5
6 SPDX-License-Identifier: GPL-2.0-or-later
7*/
8
9#include "alkexception.h"
10
11AlkException::AlkException(const QString &msg, const QString &file, const unsigned long line)
12 : m_msg(msg)
13 , m_file(file)
14 , m_line(line)
15
16{
17 // qDebug("ALKEXCEPTION(%s,%s,%ul)", qPrintable(msg), qPrintable(file), line);
18}
19
20AlkException::~AlkException()
21{
22}
AlkException(const QString &msg, const QString &file, const unsigned long line)
The constructor to create a new ALKEXCEPTION object.
This file is part of the KDE documentation.
Documentation copyright © 1996-2024 The KDE developers.
Generated on Sat Dec 21 2024 17:01:13 by doxygen 1.12.0 written by Dimitri van Heesch, © 1997-2006

KDE's Doxygen guidelines are available online.