HDK
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
DOP_Error.h
Go to the documentation of this file.
1 /*
2  * PROPRIETARY INFORMATION. This software is proprietary to
3  * Side Effects Software Inc., and is not to be reproduced,
4  * transmitted, or disclosed in any way without written permission.
5  *
6  */
7 
8 #ifndef __DOP_Error__
9 #define __DOP_Error__
10 
11 #include <UT/UT_Error.h>
12 
14 {
16  DOP_BADINPUTTYPE, // Connection to input is the wrong type
17  DOP_INVALIDINPUT, // Input is invalid.
18  DOP_INVALIDOUTPUT, // Output connected to our input is invalid.
19  DOP_FILEFAILEDREAD, // Failed readin file "%s".
20  DOP_BADOPTIONVALUE, // The option value didn't match the option type
21  DOP_CANTCREATERELATIONSHIP, // Couldn't create a needed SIM_Relationship
22  DOP_NODATANAME, // No data name specified
23  DOP_NODATA, // Couldn't find specified data %s
24  DOP_NOOBJECT, // Couldn't find specified object %s
25  DOP_FILEFAILEDWRITE, // Failure writing to file "%s".
26  DOP_CREATEDIRECTORYFAIL, // Could not create directory '%s'.
27  DOP_ERR_MULTIPLE_OUTPUT, // Multiple outputs with the same index %s
28 };
29 
30 #endif
DOP_ErrorCode
Definition: DOP_Error.h:13