nui exception handling check 88/128888/1
authorxb.teng <xb.teng@samsung.com>
Fri, 12 May 2017 02:53:07 +0000 (10:53 +0800)
committerxb.teng <xb.teng@samsung.com>
Fri, 12 May 2017 02:53:07 +0000 (10:53 +0800)
Change-Id: Ib96e072704943c8fc92dd549745cc9b263e697f4

Tizen.NUI/src/internal/NDalicPINVOKE.cs [changed mode: 0644->0755]
Tizen.NUI/src/internal/dotnetcore/AddedException.cs [changed mode: 0644->0755]
Tizen.NUI/src/public/Animation.cs [changed mode: 0644->0755]

old mode 100644 (file)
new mode 100755 (executable)
index a3876a4..ac7a9b4
@@ -93,7 +93,7 @@ class NDalicPINVOKE {
     static void SetPendingArgumentNullException(string message, string paramName) {
       global::System.Exception e = SWIGPendingException.Retrieve();
       if (e != null) message = message + " Inner Exception: " + e.Message;
-      SWIGPendingException.Set(new global::System.ArgumentNullException(paramName, message));
+      SWIGPendingException.Set(new global::System.ArgumentNullException(message, paramName));
     }
     static void SetPendingArgumentOutOfRangeException(string message, string paramName) {
       global::System.Exception e = SWIGPendingException.Retrieve();
old mode 100644 (file)
new mode 100755 (executable)
index d59a4ef..5e05865
@@ -20,17 +20,17 @@ namespace System
     {\r
         public ApplicationException()\r
         {\r
-            new global::System.InvalidCastException();\r
+            new global::System.ApplicationException();\r
         }\r
 \r
         public ApplicationException(string message)\r
         {\r
-            new global::System.InvalidCastException(message);\r
+            new global::System.ApplicationException(message);\r
         }\r
 \r
         public ApplicationException(string message, Exception innerException)\r
         {\r
-            new global::System.InvalidCastException(message, innerException);\r
+            new global::System.ApplicationException(message, innerException);\r
         }\r
     }\r
 \r
@@ -38,17 +38,17 @@ namespace System
     {\r
         public SystemException()\r
         {\r
-            new global::System.InvalidCastException();\r
+            new global::System.SystemException();\r
         }\r
 \r
         public SystemException(string message)\r
         {\r
-            new global::System.InvalidCastException(message);\r
+            new global::System.SystemException(message);\r
         }\r
 \r
         public SystemException(string message, Exception innerException)\r
         {\r
-            new global::System.InvalidCastException(message, innerException);\r
+            new global::System.SystemException(message, innerException);\r
         }\r
     }\r
 }\r
old mode 100644 (file)
new mode 100755 (executable)
index badb901..b3f40ce
@@ -379,7 +379,7 @@ namespace Tizen.NUI
             Property _prop = new Property(target, _str);
             if (_prop.propertyIndex == Property.INVALID_INDEX)
             {
-                throw new System.Exception("second argument string property is invalid parameter!");
+                throw new System.ArgumentException("second argument string property is invalid parameter!");
             }
 
             PropertyType propertyType = target.GetPropertyType(_prop.propertyIndex);
@@ -423,7 +423,7 @@ namespace Tizen.NUI
             Property _prop = new Property(target, _str);
             if (_prop.propertyIndex == Property.INVALID_INDEX)
             {
-                throw new System.Exception("second argument string property is invalid parameter!");
+                throw new System.ArgumentException("second argument string property is invalid parameter!");
             }
 
             PropertyType propertyType = target.GetPropertyType(_prop.propertyIndex);
@@ -467,7 +467,7 @@ namespace Tizen.NUI
             Property _prop = new Property(target, _str);
             if (_prop.propertyIndex == Property.INVALID_INDEX)
             {
-                throw new System.Exception("second argument string property is invalid parameter!");
+                throw new System.ArgumentException("second argument string property is invalid parameter!");
             }
 
             PropertyType propertyType = target.GetPropertyType(_prop.propertyIndex);
@@ -512,7 +512,7 @@ namespace Tizen.NUI
             Property _prop = new Property(target, _str);
             if (_prop.propertyIndex == Property.INVALID_INDEX)
             {
-                throw new System.Exception("second argument string property is invalid parameter!");
+                throw new System.ArgumentException("second argument string property is invalid parameter!");
             }
 
             PropertyType propertyType = target.GetPropertyType(_prop.propertyIndex);
@@ -557,7 +557,7 @@ namespace Tizen.NUI
             Property _prop = new Property(target, _str);
             if (_prop.propertyIndex == Property.INVALID_INDEX)
             {
-                throw new System.Exception("second argument string property is invalid parameter!");
+                throw new System.ArgumentException("second argument string property is invalid parameter!");
             }
 
             if (alphaFunction != null)
@@ -590,7 +590,7 @@ namespace Tizen.NUI
             Property _prop = new Property(target, _str);
             if (_prop.propertyIndex == Property.INVALID_INDEX)
             {
-                throw new System.Exception("second argument string property is invalid parameter!");
+                throw new System.ArgumentException("second argument string property is invalid parameter!");
             }
 
             Tizen.NUI.TimePeriod time = new Tizen.NUI.TimePeriod(MilliSecondsToSeconds(startTime), MilliSecondsToSeconds(endTime - startTime));