/** ** KAI C++ Compiler ** ** Copyright (C) 1996-2001 Intel Corp. All rights reserved. **/ #ifndef __KAI_STDEXCEPT_H #define __KAI_STDEXCEPT_H /* * - header file for backwards compatibility with old-style * headers without namespaces. * * This file includes followed by using declarations for * the 9 symbols defined in namespace std by . * KAI, 1997 * * This file also exports std::exception for reasons of backwards compatibility * to versions of KCC based on the April 1995 draft. */ #include using std::exception; using std::logic_error; using std::domain_error; using std::invalid_argument; using std::length_error; using std::out_of_range; using std::runtime_error; using std::range_error; using std::overflow_error; using std::underflow_error; #endif /*__KAI_STDEXCEPT_H*/