From: Kichan Kwon Date: Wed, 22 Mar 2017 02:12:08 +0000 (+0900) Subject: Fix exception type X-Git-Tag: submit/tizen/20170322.081531^0 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=d85fb51b43427e37fd0e8223fb59a87519e236f9;p=platform%2Fcore%2Fcsapi%2Finformation.git Fix exception type Change-Id: Ie73f6b535f73f9a6a3b4a39b01067eb05050eb00 Signed-off-by: Kichan Kwon --- diff --git a/Tizen.System.Information/RuntimeInfo/RuntimeInfoErrorFactory.cs b/Tizen.System.Information/RuntimeInfo/RuntimeInfoErrorFactory.cs index c21d3ec..4250a5e 100755 --- a/Tizen.System.Information/RuntimeInfo/RuntimeInfoErrorFactory.cs +++ b/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"); } } }