1 /* 2 * PROJECT: ReactOS Automatic Testing Utility 3 * LICENSE: GPL-2.0+ (https://spdx.org/licenses/GPL-2.0+) 4 * PURPOSE: Empty exception thrown when the parameter processor detects an invalid parameter 5 * COPYRIGHT: Copyright 2009 Colin Finck (colin@reactos.org) 6 */ 7 8 class CInvalidParameterException 9 { 10 public: 11 CInvalidParameterException(); 12 }; 13