Create a branch for Thomas Faber's work on creating a kernel mode test suite for the Google Summer of Code project

svn path=/branches/GSoC_2011/KMTestSuite/; revision=51606
This commit is contained in:
Ged Murphy 2011-05-06 13:25:33 +00:00
parent ac4083c6d7
commit 705706e05f
20922 changed files with 0 additions and 7613918 deletions

View file

@ -0,0 +1,20 @@
/*
* PROJECT: ReactOS Automatic Testing Utility
* LICENSE: GNU GPLv2 or any later version as published by the Free Software Foundation
* PURPOSE: Simple exception containing just a message
* COPYRIGHT: Copyright 2009 Colin Finck <colin@reactos.org>
*/
#include "precomp.h"
/**
* Constructs a CSimpleException object, which is catched in wmain as an exception.
* You should always use the EXCEPTION or SSEXCEPTION macro for throwing this exception.
*
* @param Message
* Constant pointer to a char array containing a short message about the exception
*/
CSimpleException::CSimpleException(const char* Message)
: m_Message(Message)
{
}