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 * DcException.cpp: Implementation of CdcException class. 00023 * for documentation see the header file. 00024 */ 00025 00026 #include "DcException.h" 00027 00028 CdcException::CdcException (t_exception_num code) 00029 { 00030 nCode = (int)code; 00031 if (code == DC_GENERAL_EXP) 00032 sMessage = "General Exception"; 00033 else 00034 sMessage = "Exception code number " + CdcString::IntToString (nCode); 00035 } 00036 00037 00038 CdcException::CdcException (const CdcString& msg, t_exception_num code) 00039 { 00040 nCode = code; 00041 sMessage = msg; 00042 } 00043 00044 00045 CdcException::~CdcException() 00046 { } 00047 00048 00049 CdcString CdcException::ToStr () const 00050 { 00051 /* Here I check if the code is one of the General Exceptions. */ 00052 if ((nCode < 100) && (nCode % 10 == 0)) 00053 return sMessage; 00054 else 00055 return CdcString::IntToString (nCode) + " - " + sMessage; 00056 } 00057 00058 00059 void CdcException::Act () 00060 { } 00061 00062 00063 int CdcException::GetExpCode () const 00064 { 00065 return nCode; 00066 } 00067 00068 00069 CdcString CdcException::GetExpMessage () const 00070 { 00071 return sMessage; 00072 }