Repository: reef Updated Branches: refs/heads/master 1b83ad213 -> 023ba25c3
[REEF-1562] Remove inheritance from ReefRuntimeException This change converts ClassHierarchyException and BindException to inherit directly from Exception. JIRA: [REEF-1562](https://issues.apache.org/jira/browse/REEF-1562) Pull request: This closes #1119 Project: http://git-wip-us.apache.org/repos/asf/reef/repo Commit: http://git-wip-us.apache.org/repos/asf/reef/commit/023ba25c Tree: http://git-wip-us.apache.org/repos/asf/reef/tree/023ba25c Diff: http://git-wip-us.apache.org/repos/asf/reef/diff/023ba25c Branch: refs/heads/master Commit: 023ba25c3babffd7746654c654bde755d15f62c2 Parents: 1b83ad2 Author: Mariia Mykhailova <[email protected]> Authored: Tue Sep 13 20:27:31 2016 -0700 Committer: Julia Wang <[email protected]> Committed: Wed Sep 14 12:04:28 2016 -0700 ---------------------------------------------------------------------- lang/cs/Org.Apache.REEF.Tang/Exceptions/BindException.cs | 2 +- lang/cs/Org.Apache.REEF.Tang/Exceptions/ClassHierarchyException.cs | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/reef/blob/023ba25c/lang/cs/Org.Apache.REEF.Tang/Exceptions/BindException.cs ---------------------------------------------------------------------- diff --git a/lang/cs/Org.Apache.REEF.Tang/Exceptions/BindException.cs b/lang/cs/Org.Apache.REEF.Tang/Exceptions/BindException.cs index 018fb8f..4970a72 100644 --- a/lang/cs/Org.Apache.REEF.Tang/Exceptions/BindException.cs +++ b/lang/cs/Org.Apache.REEF.Tang/Exceptions/BindException.cs @@ -19,7 +19,7 @@ using System; namespace Org.Apache.REEF.Tang.Exceptions { - public class BindException : ReefRuntimeException + public class BindException : Exception { internal BindException(string message) : base(message) http://git-wip-us.apache.org/repos/asf/reef/blob/023ba25c/lang/cs/Org.Apache.REEF.Tang/Exceptions/ClassHierarchyException.cs ---------------------------------------------------------------------- diff --git a/lang/cs/Org.Apache.REEF.Tang/Exceptions/ClassHierarchyException.cs b/lang/cs/Org.Apache.REEF.Tang/Exceptions/ClassHierarchyException.cs index 9253949..0367067 100644 --- a/lang/cs/Org.Apache.REEF.Tang/Exceptions/ClassHierarchyException.cs +++ b/lang/cs/Org.Apache.REEF.Tang/Exceptions/ClassHierarchyException.cs @@ -19,7 +19,7 @@ using System; namespace Org.Apache.REEF.Tang.Exceptions { - public sealed class ClassHierarchyException : ReefRuntimeException + public sealed class ClassHierarchyException : Exception { internal ClassHierarchyException(string msg) : base(msg) {
