home *** CD-ROM | disk | FTP | other *** search
/ Programming Languages Suite / ProgLangD.iso / VCAFE.3.0A / Main.bin / common_exceptions.h < prev    next >
C/C++ Source or Header  |  1998-09-15  |  898b  |  31 lines

  1. /*
  2.  * @(#)common_exceptions.h    1.9 98/07/01
  3.  *
  4.  * Copyright 1995-1998 by Sun Microsystems, Inc.,
  5.  * 901 San Antonio Road, Palo Alto, California, 94303, U.S.A.
  6.  * All rights reserved.
  7.  * 
  8.  * This software is the confidential and proprietary information
  9.  * of Sun Microsystems, Inc. ("Confidential Information").  You
  10.  * shall not disclose such Confidential Information and shall use
  11.  * it only in accordance with the terms of the license agreement
  12.  * you entered into with Sun.
  13.  */
  14.  
  15. /*
  16.  * Common exceptions thrown from within the interpreter (and
  17.  * associated libraries).
  18.  */
  19.  
  20. #ifndef    _COMMON_EXCEPTIONS_H_
  21. #define    _COMMON_EXCEPTIONS_H_
  22.  
  23. /*
  24.  * The following routines will instantiate a member of a specific
  25.  * subclass of Exception, and fill in the stack backtrace
  26.  * information from the current thread's ExecEnv stack .
  27.  */
  28. extern void OutOfMemoryError(void);
  29.  
  30. #endif    /* !_COMMON_EXCEPTIONS_H_ */
  31.