mirror of
https://github.com/reactos/reactos.git
synced 2025-08-05 22:02:58 +00:00
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:
parent
ac4083c6d7
commit
705706e05f
20922 changed files with 0 additions and 7613918 deletions
20
rosautotest/CSimpleException.cpp
Normal file
20
rosautotest/CSimpleException.cpp
Normal 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)
|
||||
{
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue