Repository: reef Updated Branches: refs/heads/master 719e64459 -> 7cc271780
[REEF-1546] Fix comments in Tang.NET referring to ApplicationException This change replaces System.ApplicationException in the comments with TangApplicationException to reflect the corresponding changes in the code. JIRA: [REEF-1546](https://issues.apache.org/jira/browse/REEF-1546) Pull request: This closes #1125 Project: http://git-wip-us.apache.org/repos/asf/reef/repo Commit: http://git-wip-us.apache.org/repos/asf/reef/commit/7cc27178 Tree: http://git-wip-us.apache.org/repos/asf/reef/tree/7cc27178 Diff: http://git-wip-us.apache.org/repos/asf/reef/diff/7cc27178 Branch: refs/heads/master Commit: 7cc27178027c2e13dfb43af92649792960815dc5 Parents: 719e644 Author: inchiosa <[email protected]> Authored: Fri Sep 16 16:40:00 2016 -0700 Committer: Mariia Mykhailova <[email protected]> Committed: Fri Sep 16 17:48:24 2016 -0700 ---------------------------------------------------------------------- lang/cs/Org.Apache.REEF.Tang/Util/ReflectionUtilities.cs | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/reef/blob/7cc27178/lang/cs/Org.Apache.REEF.Tang/Util/ReflectionUtilities.cs ---------------------------------------------------------------------- diff --git a/lang/cs/Org.Apache.REEF.Tang/Util/ReflectionUtilities.cs b/lang/cs/Org.Apache.REEF.Tang/Util/ReflectionUtilities.cs index 9788afa..eec5693 100644 --- a/lang/cs/Org.Apache.REEF.Tang/Util/ReflectionUtilities.cs +++ b/lang/cs/Org.Apache.REEF.Tang/Util/ReflectionUtilities.cs @@ -124,7 +124,7 @@ namespace Org.Apache.REEF.Tang.Util /// <returns> /// <c>true</c> if [is generic typeof] [the specified iface]; otherwise, <c>false</c>. /// </returns> - /// <exception cref="System.ApplicationException"></exception> + /// <exception cref="TangApplicationException">The type passed in IsGenericTypeof is null: iface : + iface + type: + type + .</exception> public static bool IsGenericTypeof(Type iface, Type type) { if (iface == null || type == null) @@ -351,7 +351,7 @@ namespace Org.Apache.REEF.Tang.Util /// </summary> /// <param name="name">The name.</param> /// <returns></returns> - /// <exception cref="System.ApplicationException">Not able to get Type from the name provided: + name</exception> + /// <exception cref="TangApplicationException">Not able to get Type from the name provided: + name</exception> public static Type GetTypeByName(string name) { Type t = null; @@ -401,7 +401,7 @@ namespace Org.Apache.REEF.Tang.Util /// </summary> /// <param name="t">The t.</param> /// <returns></returns> - /// <exception cref="System.ApplicationException">The Type passed to GetEnclosingClassShortNames is null</exception> + /// <exception cref="TangApplicationException">The Type passed to GetEnclosingClassShortNames is null</exception> public static string[] GetEnclosingClassNames(Type t) { if (t == null) @@ -423,7 +423,7 @@ namespace Org.Apache.REEF.Tang.Util /// </summary> /// <param name="fullName">The full name.</param> /// <returns></returns> - /// <exception cref="System.ApplicationException">The name passed to GetEnclosingClassShortNames is null</exception> + /// <exception cref="TangApplicationException">The name passed to GetEnclosingClassShortNames is null</exception> public static string[] GetEnclosingClassNames(string fullName) { if (fullName == null)
