GLC_lib
2.5.0
Main Page
Namespaces
Classes
Files
File List
File Members
All
Classes
Namespaces
Files
Functions
Variables
Typedefs
Enumerations
Enumerator
Friends
Macros
Users
laumaya
git
glc_lib
src
glc_fileformatexception.cpp
Go to the documentation of this file.
1
/****************************************************************************
2
3
This file is part of the GLC-lib library.
4
Copyright (C) 2005-2008 Laurent Ribon (laumaya@users.sourceforge.net)
5
http://glc-lib.sourceforge.net
6
7
GLC-lib is free software; you can redistribute it and/or modify
8
it under the terms of the GNU Lesser General Public License as published by
9
the Free Software Foundation; either version 3 of the License, or
10
(at your option) any later version.
11
12
GLC-lib is distributed in the hope that it will be useful,
13
but WITHOUT ANY WARRANTY; without even the implied warranty of
14
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15
GNU Lesser General Public License for more details.
16
17
You should have received a copy of the GNU Lesser General Public License
18
along with GLC-lib; if not, write to the Free Software
19
Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
20
21
*****************************************************************************/
22
24
25
#include "
glc_fileformatexception.h
"
26
27
GLC_FileFormatException::GLC_FileFormatException
(
const
QString &message,
const
QString &fileName,
ExceptionType
exceptionType)
28
:
GLC_Exception
(message)
29
, m_FileName(fileName)
30
, m_ExceptionType(exceptionType)
31
{
32
33
}
34
35
GLC_FileFormatException::~GLC_FileFormatException
() throw()
36
{
37
}
38
40
// Get Functions
42
43
// Return exception description
44
const
char
*
GLC_FileFormatException::what
()
const
throw()
45
{
46
QString exceptionmsg(
"GLC_FileFormatException : "
);
47
exceptionmsg.append(
m_ErrorDescription
);
48
exceptionmsg.append(
" in file : "
);
49
exceptionmsg.append(
m_FileName
);
50
return
exceptionmsg.toLatin1().data();
51
}
©2005-2013 Laurent Ribon