Release 4.0.0-preview1-00183
[platform/core/csapi/tizenfx.git] / src / Tizen.NUI / src / internal / dotnetcore / AddedException.cs
index be7d0dd..01525ed 100755 (executable)
@@ -18,37 +18,37 @@ namespace System
 {
     public class ApplicationException : Exception
     {
-        public ApplicationException()
+        public ApplicationException(): base()
         {
-            new global::System.ApplicationException();
+            //add anything required
         }
 
-        public ApplicationException(string message)
+        public ApplicationException(string message): base(message)
         {
-            new global::System.ApplicationException(message);
+            //add anything required
         }
 
-        public ApplicationException(string message, Exception innerException)
+        public ApplicationException(string message, Exception innerException): base(message, innerException)
         {
-            new global::System.ApplicationException(message, innerException);
+            //add anything required
         }
     }
 
     public class SystemException : Exception
     {
-        public SystemException()
+        public SystemException(): base()
         {
-            new global::System.SystemException();
+            //add anything required
         }
 
-        public SystemException(string message)
+        public SystemException(string message): base(message)
         {
-            new global::System.SystemException(message);
+            //add anything required
         }
 
-        public SystemException(string message, Exception innerException)
+        public SystemException(string message, Exception innerException): base(message, innerException)
         {
-            new global::System.SystemException(message, innerException);
+            //add anything required
         }
     }
 }