Merge "[Nsd] Fix feature name"
[platform/core/csapi/tizenfx.git] / src / Tizen.NUI / src / internal / dotnetcore / AddedException.cs
index 5e05865..01525ed 100755 (executable)
@@ -1,54 +1,54 @@
-/** Copyright (c) 2017 Samsung Electronics Co., Ltd.\r
-*\r
-* Licensed under the Apache License, Version 2.0 (the "License");\r
-* you may not use this file except in compliance with the License.\r
-* You may obtain a copy of the License at\r
-*\r
-* http://www.apache.org/licenses/LICENSE-2.0\r
-*\r
-* Unless required by applicable law or agreed to in writing, software\r
-* distributed under the License is distributed on an "AS IS" BASIS,\r
-* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\r
-* See the License for the specific language governing permissions and\r
-* limitations under the License.\r
-*\r
-*/\r
-\r
-namespace System\r
-{\r
-    public class ApplicationException : Exception\r
-    {\r
-        public ApplicationException()\r
-        {\r
-            new global::System.ApplicationException();\r
-        }\r
-\r
-        public ApplicationException(string message)\r
-        {\r
-            new global::System.ApplicationException(message);\r
-        }\r
-\r
-        public ApplicationException(string message, Exception innerException)\r
-        {\r
-            new global::System.ApplicationException(message, innerException);\r
-        }\r
-    }\r
-\r
-    public class SystemException : Exception\r
-    {\r
-        public SystemException()\r
-        {\r
-            new global::System.SystemException();\r
-        }\r
-\r
-        public SystemException(string message)\r
-        {\r
-            new global::System.SystemException(message);\r
-        }\r
-\r
-        public SystemException(string message, Exception innerException)\r
-        {\r
-            new global::System.SystemException(message, innerException);\r
-        }\r
-    }\r
-}\r
+/** Copyright (c) 2017 Samsung Electronics Co., Ltd.
+*
+* Licensed under the Apache License, Version 2.0 (the "License");
+* you may not use this file except in compliance with the License.
+* You may obtain a copy of the License at
+*
+* http://www.apache.org/licenses/LICENSE-2.0
+*
+* Unless required by applicable law or agreed to in writing, software
+* distributed under the License is distributed on an "AS IS" BASIS,
+* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+* See the License for the specific language governing permissions and
+* limitations under the License.
+*
+*/
+
+namespace System
+{
+    public class ApplicationException : Exception
+    {
+        public ApplicationException(): base()
+        {
+            //add anything required
+        }
+
+        public ApplicationException(string message): base(message)
+        {
+            //add anything required
+        }
+
+        public ApplicationException(string message, Exception innerException): base(message, innerException)
+        {
+            //add anything required
+        }
+    }
+
+    public class SystemException : Exception
+    {
+        public SystemException(): base()
+        {
+            //add anything required
+        }
+
+        public SystemException(string message): base(message)
+        {
+            //add anything required
+        }
+
+        public SystemException(string message, Exception innerException): base(message, innerException)
+        {
+            //add anything required
+        }
+    }
+}