functexcept.h

Go to the documentation of this file.
00001 // Function-Based Exception Support -*- C++ -*-
00002 
00003 // Copyright (C) 2001, 2004, 2005 Free Software Foundation, Inc.
00004 //
00005 // This file is part of the GNU ISO C++ Library.  This library is free
00006 // software; you can redistribute it and/or modify it under the
00007 // terms of the GNU General Public License as published by the
00008 // Free Software Foundation; either version 2, or (at your option)
00009 // any later version.
00010 
00011 // This library is distributed in the hope that it will be useful,
00012 // but WITHOUT ANY WARRANTY; without even the implied warranty of
00013 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
00014 // GNU General Public License for more details.
00015 
00016 // You should have received a copy of the GNU General Public License along
00017 // with this library; see the file COPYING.  If not, write to the Free
00018 // Software Foundation, 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,
00019 // USA.
00020 
00021 // As a special exception, you may use this file as part of a free software
00022 // library without restriction.  Specifically, if other files instantiate
00023 // templates or use macros or inline functions from this file, or you compile
00024 // this file and link it with other files to produce an executable, this
00025 // file does not by itself cause the resulting executable to be covered by
00026 // the GNU General Public License.  This exception does not however
00027 // invalidate any other reasons why the executable file might be covered by
00028 // the GNU General Public License.
00029 
00034 //
00035 // ISO C++ 14882: 19.1  Exception classes
00036 //
00037 
00038 #ifndef _FUNCTEXCEPT_H
00039 #define _FUNCTEXCEPT_H 1
00040 
00041 #include <exception_defines.h>
00042 
00043 namespace std
00044 {
00045   // Helper for exception objects in <except>
00046   void
00047   __throw_bad_exception(void) __attribute__((__noreturn__));
00048 
00049   // Helper for exception objects in <new>
00050   void
00051   __throw_bad_alloc(void) __attribute__((__noreturn__));
00052 
00053   // Helper for exception objects in <typeinfo>
00054   void
00055   __throw_bad_cast(void) __attribute__((__noreturn__));
00056 
00057   void
00058   __throw_bad_typeid(void) __attribute__((__noreturn__));
00059 
00060   // Helpers for exception objects in <stdexcept>
00061   void
00062   __throw_logic_error(const char*) __attribute__((__noreturn__));
00063 
00064   void
00065   __throw_domain_error(const char*) __attribute__((__noreturn__));
00066 
00067   void
00068   __throw_invalid_argument(const char*) __attribute__((__noreturn__));
00069 
00070   void
00071   __throw_length_error(const char*) __attribute__((__noreturn__));
00072 
00073   void
00074   __throw_out_of_range(const char*) __attribute__((__noreturn__));
00075 
00076   void
00077   __throw_runtime_error(const char*) __attribute__((__noreturn__));
00078 
00079   void
00080   __throw_range_error(const char*) __attribute__((__noreturn__));
00081 
00082   void
00083   __throw_overflow_error(const char*) __attribute__((__noreturn__));
00084 
00085   void
00086   __throw_underflow_error(const char*) __attribute__((__noreturn__));
00087 
00088   // Helpers for exception objects in basic_ios
00089   void
00090   __throw_ios_failure(const char*) __attribute__((__noreturn__));
00091 } // namespace std
00092 
00093 #endif

Generated on Tue Feb 2 16:55:57 2010 for GNU C++ STL by  doxygen 1.4.7