File indexing completed on 2024-05-26 05:08:48

0001 /*
0002     SPDX-FileCopyrightText: 2014-2016 Christian Dávid <christian-david@web.de>
0003     SPDX-License-Identifier: GPL-2.0-or-later
0004 */
0005 
0006 #include "mymoneyutils.h"
0007 
0008 #include "mymoneyexception.h"
0009 
0010 QString unexpectedExceptionString(const MyMoneyException &e)
0011 {
0012     return QString("Unexpected exception: %1").arg(e.what());
0013 }
0014