VR-Forces 4.7 Class Documentation
Home
Modules
Namespaces
Classes
Files
Examples
Behavior Models
File List
File Members
All
Classes
Namespaces
Files
Functions
Variables
Typedefs
Enumerations
Enumerator
Properties
Friends
Macros
Groups
Pages
include
tdbutil
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.
21
class
DT_DLL_tdbutil
DtArgumentException
:
public
DtException
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 Fri Apr 26 21:53:14 EDT 2019 from SVN revision 197883
Copyright © 2005-2019 VT MAK. All Rights Reserved (
www.mak.com
)