VR-Forces 4.5 Class Documentation
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
argumentException.h
Go to the documentation of this file.
1 /*******************************************************************************
2 ** Copyright (c) 2004 MAK Technologies, Inc.
3 ** All rights reserved.
4 *******************************************************************************/
5 /*******************************************************************************
6 ** $RCSfile: argumentException.h,v $ $Revision: 1.2 $ $State: Exp $
7 *******************************************************************************/
8 
9 #ifndef argumentException_H_
10 #define argumentException_H_
11 
12 #pragma warning (disable:4786)
13 
14 #include "tdbutil/tdbUtilDefines.h"
15 #include <vlutil/vlExceptions.h>
16 #include <string>
17 
18 //
19 // Identifies that something wrong happened while parsing/reading/processing
20 // arguments.
22 {
23 public:
24  inline DtArgumentException(const char *errorMessage,
25  const DtException *previousException = 0) throw();
26 
27 };
28 
29 inline DtArgumentException::DtArgumentException(const char *errorMessage,
30  const DtException *previousException) throw()
31  : DtException(errorMessage, previousException)
32 {
33 }
34 
35 
36 #endif
37 
38 

Document ID: Generated on Thu Mar 23 18:54:12 EDT 2017 from SVN revision 174804
Copyright © 2005-2017 VT MÄK. All Rights Reserved (www.mak.com)