home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
OS/2 Shareware BBS: 10 Tools
/
10-Tools.zip
/
tlx501.zip
/
SRC
/
XEMPTY.CPP
< prev
next >
Wrap
C/C++ Source or Header
|
1996-07-08
|
2KB
|
49 lines
/****************************************************************************
$Id: xempty.cpp 501.0 1995/03/07 12:26:30 RON Exp $
Copyright (c) 1991-95 Tarma Software Research. All rights reserved.
Project: Tarma Library for C++ V5.0
Author: Ron van der Wal
Implementation of class TLXEmpty.
$Log: xempty.cpp $
Revision 501.0 1995/03/07 12:26:30 RON
Updated for TLX 5.01
Revision 1.3 1995/01/31 16:30:38 RON
Update for release 012
Added partial support for SunPro C++ compiler
Revision 1.2 1995/01/06 15:59:04 ron
Corrected Revision keyword
Revision 1.1 1994/11/16 15:46:48 ron
Initial revision
****************************************************************************/
#include <tlx\501\_build.h>
TLX_MODULE_INFO("$Revision: 501.0 $");
#include <tlx\501\except.h>
/*-------------------------------------------------------------------------*/
TLXEmpty::TLXEmpty(const TLXLocus &aLocus)
/* Constructor. Initializes the data members and base class.
---------------------------------------------------------------------------*/
: TLException(aLocus)
{
}
/*-------------------------------------------------------------------------*/
const char *TLXEmpty::Description() const
/* Builds a description of the exception and returns a pointer to it.
---------------------------------------------------------------------------*/
{
return "Collection empty";
}