CACPathException.cpp
Go to the documentation of this file.00001
00009 #include "PKIFPathException.h"
00017 CPKIFPathException::~CPKIFPathException(void) STDLIB_SUPER_THROW
00018 {
00019 }
00027 CPKIFPathException::CPKIFPathException(
00029 int subComponentID,
00031 int errorCode)
00032 : CPKIFException(subComponentID, errorCode)
00033 {
00034 }
00042 CPKIFPathException::CPKIFPathException(
00044 int subComponentID,
00046 int errorCode,
00048 char* fileName,
00051 int lineNumber)
00052 : CPKIFException(subComponentID, errorCode, fileName, lineNumber)
00053 {
00054 }
00062 CPKIFPathException::CPKIFPathException(
00064 int subComponentID,
00066 int errorCode,
00068 const char* errorDescription)
00069 : CPKIFException(subComponentID, errorCode, errorDescription)
00070 {
00071 }
00079 CPKIFPathException::CPKIFPathException(
00081 int subComponentID,
00083 int errorCode,
00086 const char* errorDescription,
00088 char* fileName,
00091 int lineNumber)
00092 : CPKIFException(subComponentID, errorCode, errorDescription, fileName, lineNumber)
00093 {
00094 }