From b0f47097439e29583c7c2f1db8b547cb73ce6abd Mon Sep 17 00:00:00 2001 From: wolf Date: Sat, 31 Oct 1998 23:40:46 +0000 Subject: [PATCH] Make global exceptions derived from the standard class. git-svn-id: https://svn.dealii.org/trunk@617 0785d39b-7218-0410-832d-ea1e28bc413d --- deal.II/base/include/base/exceptions.h | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/deal.II/base/include/base/exceptions.h b/deal.II/base/include/base/exceptions.h index f94d173db7..b3293c7683 100644 --- a/deal.II/base/include/base/exceptions.h +++ b/deal.II/base/include/base/exceptions.h @@ -429,9 +429,14 @@ class Exception5 : public ExceptionBase { \ way. */ -//#include +#include -class GlobalExcIO// : public exception + +/** + * Exception class to be thrown whenever an I/O operation in the library + * fails. + */ +class GlobalExcIO : public exception { public: virtual const char * what () const { -- 2.39.5