From: Kichan Kwon Date: Wed, 22 Mar 2017 02:12:08 +0000 (+0900) Subject: Fix exception type X-Git-Tag: submit/trunk/20170823.075128~106^2~11 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=4502d085aaba08f6a864c9e4e0caa1951b4f86ea;p=platform%2Fcore%2Fcsapi%2Ftizenfx.git Fix exception type Change-Id: Ie73f6b535f73f9a6a3b4a39b01067eb05050eb00 Signed-off-by: Kichan Kwon --- diff --git a/src/Tizen.System.Information/RuntimeInfo/RuntimeInfoErrorFactory.cs b/src/Tizen.System.Information/RuntimeInfo/RuntimeInfoErrorFactory.cs index c21d3ec..4250a5e 100755 --- a/src/Tizen.System.Information/RuntimeInfo/RuntimeInfoErrorFactory.cs +++ b/src/Tizen.System.Information/RuntimeInfo/RuntimeInfoErrorFactory.cs @@ -64,7 +64,7 @@ namespace Tizen.System } else if (error == RuntimeInfoError.NotSupported) { - throw new ArgumentException("Not supported"); + throw new NotSupportedException("Not supported"); } } }