home *** CD-ROM | disk | FTP | other *** search
/ NeXTSTEP 3.0 / NeXTSTEP3.0.iso / NextDeveloper / Headers / dbkit / exceptions.h < prev    next >
Text File  |  1992-05-05  |  344b  |  16 lines

  1. /*
  2. **      exceptions.h
  3. **      Database Kit, Release 3.0
  4. **      Copyright (c) 1992, NeXT Computer, Inc.  All rights reserved. 
  5. */
  6.  
  7. #define DB_ERROR_BASE (6000)
  8.  
  9. typedef enum _DBAccessErrors {
  10.   DB_UnimplementedException = DB_ERROR_BASE,
  11.   DB_CoercionException,
  12.   DB_FormatException,
  13.   DB_CursorException,
  14.   DB_CommitException
  15. } DBExceptions;
  16.