[Core] Remove wrong descriptions (#6348)
authorhjhun <36876573+hjhun@users.noreply.github.com>
Wed, 25 Sep 2024 01:19:29 +0000 (10:19 +0900)
committerGitHub <noreply@github.com>
Wed, 25 Sep 2024 01:19:29 +0000 (10:19 +0900)
The Run() & Quit() methods of Task do not throw InvalidOperationException.

Signed-off-by: Hwankyu Jhun <h.jhun@samsung.com>
src/Tizen.Core/Tizen.Core/Task.cs

index 40ed62cea8ee7afda96347795360bf7cac4fe30f..a0bbf61fb740eeefe420fa37026efbf9ef697f02 100644 (file)
@@ -633,7 +633,6 @@ namespace Tizen.Core
         /// Runs the main loop of the task.
         /// </summary>
         /// <exception cref="ArgumentException">Thrown when the unmanaged handle is invalid.</exception>
-        /// <exception cref="InvalidOperationException">Thrown when failed because of an invalid operation.</exception>
         /// <example>
         /// <code>
         /// 
@@ -653,7 +652,6 @@ namespace Tizen.Core
         /// Quits the main loop of the task.
         /// </summary>
         /// <exception cref="ArgumentException">Thrown when the unmanaged handle is invalid.</exception>
-        /// <exception cref="InvalidOperationException">Thrown when failed because of an invalid operation.</exception>
         /// <remarks>
         /// This function can be called from any thread.
         /// It requests the task to finish the current iteration of its loop and stop running.