mirror of
https://github.com/reactos/reactos.git
synced 2024-11-01 12:26:32 +00:00
13 lines
360 B
C++
13 lines
360 B
C++
/*
|
|
* PROJECT: ReactOS Automatic Testing Utility
|
|
* LICENSE: GPL-2.0+ (https://spdx.org/licenses/GPL-2.0+)
|
|
* PURPOSE: Empty exception thrown when the parameter processor detects an invalid parameter
|
|
* COPYRIGHT: Copyright 2009 Colin Finck (colin@reactos.org)
|
|
*/
|
|
|
|
class CInvalidParameterException
|
|
{
|
|
public:
|
|
CInvalidParameterException();
|
|
};
|