From e6181c24124d97f2fbc932b8a68311e625463156 Mon Sep 17 00:00:00 2001 From: uzvkl Date: Tue, 11 Jun 2019 23:05:52 +0200 Subject: Move dsa related stuff to subfolder --- FireBase/ExceptionEventArgs.cs | 28 ---------------------------- 1 file changed, 28 deletions(-) delete mode 100644 FireBase/ExceptionEventArgs.cs (limited to 'FireBase/ExceptionEventArgs.cs') diff --git a/FireBase/ExceptionEventArgs.cs b/FireBase/ExceptionEventArgs.cs deleted file mode 100644 index 09c205a..0000000 --- a/FireBase/ExceptionEventArgs.cs +++ /dev/null @@ -1,28 +0,0 @@ -using System; - -namespace Firebase.Database -{ - /// - /// Event args holding the object. - /// - public class ExceptionEventArgs : EventArgs where T : Exception - { - public readonly T Exception; - - /// - /// Initializes a new instance of the class. - /// - /// The exception. - public ExceptionEventArgs(T exception) - { - Exception = exception; - } - } - - public class ExceptionEventArgs : ExceptionEventArgs - { - public ExceptionEventArgs(Exception exception) : base(exception) - { - } - } -} \ No newline at end of file -- cgit v1.2.3-54-g00ecf