- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic to the Top
- Bookmark
- Subscribe
- Printer Friendly Page
ACIS Error Messages
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Highlight
- Email to a Friend
- Report Inappropriate Content
11-13-2007 10:01 PM
Re: ACIS Error Messages
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Highlight
- Email to a Friend
- Report Inappropriate Content
11-21-2007 07:41 PM
//Given an outcome object named "result"
if (!result.ok()) { int error_number = result.error_number();
printf("Error %i - %s\n",error_number,find_err_mess(error_number));
}There is a glossary of sorts for entity check errors. These are the errors that are returned in an insanity_list when calling the function api_check_entity() to determine the quality and integrity of an entity. This glossary maps the check error codes, the associated strings, and an explanation of the problem and is located in the ACIS Online Help under Intersectors->ACIS Checker.
Best Regards and Happy Thanksgiving!
Stacey
Re: ACIS Error Messages
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Highlight
- Email to a Friend
- Report Inappropriate Content
09-28-2009 03:38 PM
We now have a list of ACIS error messages located in our wiki documentation. These are the same as you will find in the .err files that Stacey mentioned above: http://doc.spatial.com/index.php/Error_Messages
Re: ACIS Error Messages
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Highlight
- Email to a Friend
- Report Inappropriate Content
11-03-2009 11:17 AM
I've found that the error number is almost useless in a search for information about an error and might change from release to release. I use the following
find_err_ident(result.get_error_info()->error_number());
to obtain the identifier string (e.g. FACET_AREA_IS_BAD) for an error. You can use this symbol in your code and when searching for more information.
Mike

