VR-Forces 4.1.1 Class Documentation
Home
Modules
Namespaces
Classes
Files
Examples
Behavior Models
File List
File Members
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 Mon Apr 8 19:24:01 EDT 2013 from SVN revision 125877
Copyright © 2005-2013 VT MÄK. All Rights Reserved (
www.mak.com
)