Fix exception type
authorKichan Kwon <k_c.kwon@samsung.com>
Wed, 22 Mar 2017 02:12:08 +0000 (11:12 +0900)
committerKichan Kwon <k_c.kwon@samsung.com>
Wed, 22 Mar 2017 02:13:00 +0000 (11:13 +0900)
Change-Id: Ie73f6b535f73f9a6a3b4a39b01067eb05050eb00
Signed-off-by: Kichan Kwon <k_c.kwon@samsung.com>
src/Tizen.System.Information/RuntimeInfo/RuntimeInfoErrorFactory.cs

index c21d3ec..4250a5e 100755 (executable)
@@ -64,7 +64,7 @@ namespace Tizen.System
             }
             else if (error == RuntimeInfoError.NotSupported)
             {
-                throw new ArgumentException("Not supported");
+                throw new NotSupportedException("Not supported");
             }
         }
     }