Update nuget packages
[profile/tv/apps/dotnet/home.git] / TVHome / TVHome.TizenTV / SniperException.cs
1 using System;
2
3 namespace CoreApp
4 {
5     public class SniperException : Exception
6     {
7         public SniperException()
8         {
9         }
10
11         public SniperException(string message)
12             : base(message)
13         {
14         }
15
16         public SniperException(string message, Exception inner)
17             : base(message, inner)
18         {
19         }
20     }
21 }
22
23 /* End of a file */