00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00023 #ifndef _CLASS_INVALIDPARAMETERSPECEXCEPTION_H
00024 #define _CLASS_INVALIDPARAMETERSPECEXCEPTION_H
00025
00026 #ifdef __cplusplus
00027
00028 #include "beecrypt/c++/security/GeneralSecurityException.h"
00029 using beecrypt::security::GeneralSecurityException;
00030
00031 namespace beecrypt {
00032 namespace security {
00033 namespace spec {
00036 class BEECRYPTCXXAPI InvalidParameterSpecException : public beecrypt::security::GeneralSecurityException
00037 {
00038 public:
00039 InvalidParameterSpecException() throw ();
00040 InvalidParameterSpecException(const String& message) throw ();
00041 };
00042 }
00043 }
00044 }
00045
00046 #endif
00047
00048 #endif