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}
const QString & file() const
This method is used to return the filename that was passed during the creation of the exception objec...
AlkException(const QString &msg, const QString &file, const unsigned long line)
The constructor to create a new ALKEXCEPTION object.
unsigned long line() const
This method is used to return the linenumber that was passed during the creation of the exception obj...
This file is part of the KDE documentation.
Documentation copyright © 1996-2025 The KDE developers.
Generated on Thu Jan 23 2025 18:59:03 by doxygen 1.13.2 written by Dimitri van Heesch, © 1997-2006

KDE's Doxygen guidelines are available online.