root/trunk/eCard/eCardMVC/adMoto.Payments.Web/Exceptions/ConfirmationLogger.cs @ 979

Wersja 979, 452 bytes (wprowadzona przez marek, 16 years temu)

re #215

RevLine 
[979]1using System;
2
3namespace adMoto.Payments.Web.Exceptions
4{
5    public class ConfirmationLogger : ApplicationException
6    {
7        public ConfirmationLogger()
8        {
9        }
10
11        public ConfirmationLogger(string message)
12            : base(message)
13        {
14
15        }
16
17        public ConfirmationLogger(string message, Exception innerException) : base(message, innerException)
18        {
19           
20        }
21    }
22}
Notatka: Zobacz TracBrowser aby uzyskać więcej informacji.