File indexing completed on 2024-06-02 05:05:36

0001 /*
0002     SPDX-FileCopyrightText: 2005 Joris Guisson <joris.guisson@gmail.com>
0003 
0004     SPDX-License-Identifier: GPL-2.0-or-later
0005 */
0006 #include "error.h"
0007 #include <util/log.h>
0008 
0009 namespace bt
0010 {
0011 Error::Error(const QString &msg)
0012     : msg(msg)
0013 {
0014     // Out(SYS_GEN|LOG_DEBUG) << "Error thrown: " << msg << endl;
0015 }
0016 
0017 Error::~Error()
0018 {
0019 }
0020 
0021 Warning::Warning(const QString &msg)
0022     : msg(msg)
0023 {
0024     // Out(SYS_GEN|LOG_DEBUG) << "Warning thrown: " << msg << endl;
0025 }
0026 
0027 Warning::~Warning()
0028 {
0029 }
0030 }