SCVPException.cpp
Go to the documentation of this file.00001
00010 #include "config.h"
00011 #include "PKIFSCVPDLL.h"
00012 #include "SCVPException.h"
00013 #include "PKIFSCVP.h"
00014
00022 CPKIFSCVPException::CPKIFSCVPException(
00024 int subComponentID,
00026 int errorCode)
00027 : CPKIFException(subComponentID, errorCode)
00028 {
00029 }
00037 CPKIFSCVPException::CPKIFSCVPException(
00039 int subComponentID,
00041 int errorCode,
00043 char* fileName,
00046 int lineNumber)
00047 : CPKIFException(subComponentID, errorCode, fileName, lineNumber)
00048 {
00049 }
00057 CPKIFSCVPException::CPKIFSCVPException(
00059 int subComponentID,
00061 int errorCode,
00064 const char* errorDescription)
00065 : CPKIFException(subComponentID, errorCode, errorDescription)
00066 {
00067 }
00075 CPKIFSCVPException::CPKIFSCVPException(
00077 int subComponentID,
00079 int errorCode,
00081 const char* errorDescription,
00083 char* fileName,
00086 int lineNumber)
00087 : CPKIFException(subComponentID, errorCode, errorDescription, fileName, lineNumber)
00088 {
00089 }
00097 CPKIFSCVPException::~CPKIFSCVPException(void) STDLIB_SUPER_THROW
00098 {
00099 }
00100