00001 /* 00002 Copyright 2007 Erez Bibi (erezbibi@users.sourceforge.net) 00003 This file is part of Beesnest. 00004 00005 Beesnest is free software; you can redistribute it and/or modify 00006 it under the terms of the GNU General Public License as published by 00007 the Free Software Foundation; either version 2 of the License, or 00008 (at your option) any later version. 00009 00010 Beesnest is distributed in the hope that it will be useful, 00011 but WITHOUT ANY WARRANTY; without even the implied warranty of 00012 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 00013 GNU General Public License for more details. 00014 00015 You should have received a copy of the GNU General Public License 00016 along with Beesnest; if not, write to the Free Software 00017 Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA 00018 */ 00019 00020 00021 /** 00022 * DcExceptionFile.cpp: Implementation of CdcExceptionFile class. 00023 * for documentation see the header file. 00024 */ 00025 00026 #include "DcExceptionFile.h" 00027 00028 00029 CdcExceptionFile::CdcExceptionFile (t_exception_num code) 00030 { 00031 nCode = code; 00032 if (nCode == DC_FILE_EXP) 00033 sMessage = "General File System Exception"; 00034 else 00035 sMessage = "File System exception code number" + CdcString::IntToString (code); 00036 }; 00037 00038 00039 CdcExceptionFile::CdcExceptionFile (const CdcString& msg, t_exception_num code) 00040 :CdcException (msg, code) 00041 { }