CACCacheException.cpp
Go to the documentation of this file.00001
00010 #include "PKIFCacheException.h"
00011
00019 CPKIFCacheException::~CPKIFCacheException(void) STDLIB_SUPER_THROW
00020 {
00021 }
00022
00031 CPKIFCacheException::CPKIFCacheException(
00033 int subComponentID,
00035 int errorCode)
00036 : CPKIFException(subComponentID, errorCode)
00037 {
00038 }
00047 CPKIFCacheException::CPKIFCacheException(
00049 int subComponentID,
00051 int errorCode,
00053 char* fileName,
00055 int lineNumber)
00056 : CPKIFException(subComponentID, errorCode, fileName, lineNumber)
00057 {
00058 }
00067 CPKIFCacheException::CPKIFCacheException(
00069 int subComponentID,
00071 int errorCode,
00073 const char* errorDescription)
00074 : CPKIFException(subComponentID, errorCode, errorDescription)
00075 {
00076 }
00085 CPKIFCacheException::CPKIFCacheException(
00087 int subComponentID,
00089 int errorCode,
00091 const char* errorDescription,
00093 char* fileName,
00095 int lineNumber)
00096 : CPKIFException(subComponentID, errorCode, errorDescription, fileName, lineNumber)
00097 {
00098 }