[NUI] Fix build warning CS1064
authorSunghyun Kim <scholb.kim@samsung.com>
Mon, 14 Dec 2020 07:27:40 +0000 (16:27 +0900)
committerdongsug-song <35130733+dongsug-song@users.noreply.github.com>
Tue, 15 Dec 2020 06:33:59 +0000 (15:33 +0900)
https://docs.microsoft.com/en-us/dotnet/fundamentals/code-analysis/quality-rules/ca1064
CA1064: Exceptions should be public

src/Tizen.NUI/src/internal/XamlBinding/InvalidNavigationException.cs [deleted file]

diff --git a/src/Tizen.NUI/src/internal/XamlBinding/InvalidNavigationException.cs b/src/Tizen.NUI/src/internal/XamlBinding/InvalidNavigationException.cs
deleted file mode 100755 (executable)
index 2bdb665..0000000
+++ /dev/null
@@ -1,11 +0,0 @@
-using System;
-
-namespace Tizen.NUI.Binding
-{
-    internal class InvalidNavigationException : Exception
-    {
-        public InvalidNavigationException(string message) : base(message)
-        {
-        }
-    }
-}