wasCSharpSQLite – Blame information for rev

Subversion Repositories:
Rev:
Rev Author Line No. Line
1 office 1 using System;
2  
3 namespace System
4 {
5 public class ApplicationException :Exception
6 {
7 public ApplicationException()
8 : base()
9 {
10  
11 }
12  
13 public ApplicationException(string message)
14 : base(message)
15 {
16  
17 }
18  
19 public ApplicationException(string message, Exception innerException)
20 : base(message, innerException)
21 {
22  
23 }
24 }
25 }