00001
#if !defined (__ALLOCATORNOTFOUNDEXCEPTION_HPP)
00002
#define __ALLOCATORNOTFOUNDEXCEPTION_HPP
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024
#if !defined(__COMMON_HPP)
00025
#include <Common.hpp>
00026
#endif
00027
00028
#if !defined(__ABSTRACTFACTORYEXCEPTION_HPP)
00029
#include <AbstractFactoryException.hpp>
00030
#endif
00031
00032
namespace corelinux
00033 {
00034
00035
00036 DECLARE_CLASS( AllocatorNotFoundException );
00037
00044 class AllocatorNotFoundException :
public AbstractFactoryException
00045 {
00046
00047
public:
00048
00060
AllocatorNotFoundException
00061 (
00062 CharCptr file,
00063 LineNum line,
00064 Severity severity = Exception::CONTINUABLE,
00065
bool outOfMemory =
false
00066 );
00067
00073
AllocatorNotFoundException
00074 (
00075
AllocatorNotFoundExceptionCref
00076 );
00077
00079
00080
virtual ~AllocatorNotFoundException(
void );
00081
00082
00083
00084
00085
00092
AllocatorNotFoundExceptionRef operator=
00093 (
00094
AllocatorNotFoundExceptionCref
00095 );
00096
00103
bool operator==
00104 (
00105
AllocatorNotFoundExceptionCref
00106 )
const;
00107
00108
00109
00110
00111
00112
00113
00114
00115
00116
00117
00118
protected:
00119
00126
AllocatorNotFoundException(
void );
00127
00128 };
00129
00130 }
00131
00132
00133
#endif // !defined __ALLOCATORNOTFOUNDEXCEPTION_HPP
00134
00135
00136
00137
00138
00139
00140
00141
00142