From: David Wells
Date: Fri, 16 Sep 2016 00:02:29 +0000 (-0400)
Subject: Mention ParameterHandler exceptions in changes.h.
X-Git-Tag: v8.5.0-rc1~626^2~2
X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=c3cfebdff78d81f12ef8be0e8c2a813cb881c21d;p=dealii.git
Mention ParameterHandler exceptions in changes.h.
The last few commits change the behavior in an incompatible way by
raising exceptions on invalid input instead of using a return code.
---
diff --git a/doc/news/changes.h b/doc/news/changes.h
index 769e2bb193..806f17d7f8 100644
--- a/doc/news/changes.h
+++ b/doc/news/changes.h
@@ -38,6 +38,15 @@ inconvenience this causes.
+ - Deprecated: ParameterHandler::read_input,
+ ParameterHandler::read_input_from_xml, and
+ ParameterHandler::read_input_from_string are now deprecated in favor of
+ ParameterHandler::parse_input, ParameterHandler::parse_input_from_xml, and
+ ParameterHandler::parse_input_from_string. These new functions throw
+ exceptions to indicate failure instead of using return codes.
+
+ (David Wells, 2016/09/15)
+
- Deprecated: MGCoarseGridLACIteration got deprecated in favor of
MGCoarseGridIterativeSolver.