00001 /* 00002 * PROPRIETARY INFORMATION. This software is proprietary to 00003 * Side Effects Software Inc., and is not to be reproduced, 00004 * transmitted, or disclosed in any way without written permission. 00005 * 00006 * Produced by: 00007 * Side Effects 00008 * 477 Richmond Street West 00009 * Toronto, Ontario 00010 * Canada M5V 3E7 00011 * 416-504-9876 00012 */ 00013 00014 #ifndef __DOP_Error__ 00015 #define __DOP_Error__ 00016 00017 #include <UT/UT_Error.h> 00018 00019 enum DOP_ErrorCode 00020 { 00021 DOP_MESSAGE = 0, 00022 DOP_BADINPUTTYPE, // Connection to input is the wrong type 00023 DOP_INVALIDINPUT, // Input is invalid. 00024 DOP_INVALIDOUTPUT, // Output connected to our input is invalid. 00025 DOP_FILEFAILEDREAD, // Failure reading from a file 00026 DOP_BADOPTIONVALUE, // The option value didn't match the option type 00027 DOP_CANTCREATERELATIONSHIP, // Couldn't create a needed SIM_Relationship 00028 DOP_NODATANAME, // No data name specified 00029 DOP_NODATA, // Couldn't find specified data %s 00030 DOP_NOOBJECT // Couldn't find specified object %s 00031 }; 00032 00033 #endif
1.5.9