Modify exception description in Notification
authorSeungha Son <seungha.son@samsung.com>
Fri, 12 May 2017 04:11:34 +0000 (13:11 +0900)
committerSeungha Son <seungha.son@samsung.com>
Fri, 12 May 2017 04:18:11 +0000 (13:18 +0900)
Signed-off-by: Seungha Son <seungha.son@samsung.com>
Change-Id: If7af067526e74bcd03c7b336d3ce149736d5d8c2

src/Tizen.Applications.Notification/Tizen.Applications.Notifications/NotificationActiveStyle.cs
src/Tizen.Applications.Notification/Tizen.Applications.Notifications/NotificationButtonAction.cs
src/Tizen.Applications.Notification/Tizen.Applications.Notifications/NotificationManager.cs

index a9a1aa4..d986c37 100755 (executable)
@@ -203,7 +203,6 @@ namespace Tizen.Applications.Notifications
             /// </summary>
             /// <param name="index">The index to remove a button</param>
             /// <returns>true if the element is successfully found and removed; otherwise, false</returns>
-            /// <exception cref="ArgumentException">Thrown when argument is invalid</exception>
             public bool RemoveButtonAction(ButtonIndex index)
             {
                 bool ret = buttonDictionary.Remove(index);
index b783db4..c4c2ed5 100755 (executable)
@@ -55,7 +55,6 @@ namespace Tizen.Applications.Notifications
             /// <value>
             /// If you don't set Action, nothing happens when button is clicked.
             /// </value>
-            /// <exception cref="ArgumentException">Thrown when argument is invalid</exception>
             /// <example>
             /// <code>
             /// ButtonAction button = new ButtonAction
index 10ecd77..1a890f3 100755 (executable)
@@ -426,8 +426,6 @@ namespace Tizen.Applications.Notifications
         /// <summary>
         /// Gets notification block state.
         /// </summary>
-        /// <exception cref="UnauthorizedAccessException">Thrown in case of permission denied.</exception>
-        /// <exception cref="InvalidOperationException">Thrown in case of any internal error.</exception>
         /// <remarks>
         /// The user can set the notification block state in settings.
         /// The block state indicates whether or not notifications can be posted.
@@ -435,7 +433,8 @@ namespace Tizen.Applications.Notifications
         /// Sound, Vibrate and Active notifications are blocked.
         /// </remarks>
         /// <returns>NotificationBlockState is state if notification is posted</returns>
-        /// <exception cref="InvalidOperationException">Thrown when no template with input name exists</exception>
+        /// <exception cref="UnauthorizedAccessException">Thrown in case of permission denied.</exception>
+        /// <exception cref="InvalidOperationException">Thrown in case of any internal error.</exception>
         /// <privilege>http://tizen.org/privilege/notification</privilege>
         public static NotificationBlockState GetBlockState()
         {