--- yoda/event/Exception.h 2005/01/11 14:58:20 2.2 +++ yoda/event/Exception.h 2005/02/15 17:53:35 2.3 @@ -1,6 +1,6 @@ /** @file * $Source: /home/cvsmanager/yoda/event/Exception.h,v $ - * $Id: Exception.h,v 2.1 2004/12/03 22:04:04 kusanagi Exp $ + * $Id: Exception.h,v 2.2 2005/01/11 14:58:20 kusanagi Exp $ * $Author: kusanagi $ * * Header file for the exceptions of Pamela. @@ -27,6 +27,12 @@ virtual const char* print () const throw () { return message; } }; + class NotFoundEnvironmentVarException: public Exception { + public: + NotFoundEnvironmentVarException::NotFoundEnvironmentVarException(const char* msg): Exception(msg) {} + NotFoundEnvironmentVarException::~NotFoundEnvironmentVarException () throw(){ } + }; + class UnidentifiedPacketException: public Exception { private: UINT8 pktId;