Mailing-List: contact cygwin-apps-help AT cygwin DOT com; run by ezmlm Sender: cygwin-apps-owner AT cygwin DOT com List-Subscribe: List-Archive: List-Post: List-Help: , Mail-Followup-To: cygwin-apps AT cygwin DOT com Delivered-To: mailing list cygwin-apps AT cygwin DOT com Date: Tue, 30 Apr 2002 14:29:48 +0200 From: Pavel Tsekov Reply-To: Pavel Tsekov Organization: Syntrex, Inc. X-Priority: 3 (Normal) Message-ID: <2116094242.20020430142948@syntrex.com> To: "Robert Collins" CC: "CygWin Apps" Subject: Re[2]: setup.exe exception handling guidelines In-Reply-To: References: MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Hello Robert, Tuesday, April 30, 2002, 2:08:37 PM, you wrote: >> What about the standard C++ library exception class ? In the >> recent threads regarding setup and libgetopt++ I red that we >> libstdc++ can be used now ? RC> Yes, libstdc++ can be used now. Whats the header for the C++ library RC> exception class? #include Don't try to look this file in /usr/include/g++-3/. Its found in the /usr/lib/gcc-lib/target/version/include. This is the root of all exception and is defined by the C++ language not the stl library. Exceptions provided by the standard C++ library are defined in header. This includes out_of_range, invalid_argument, overflow_error.