source: extensions/PiwigoLib/PiwigoLib/Proxy/PwgProxyException.cs @ 7149

Last change on this file since 7149 was 7149, checked in by bayral, 14 years ago

Piwigolib is now modify for mask the implementation of proxy.
Add start version of piwigo WPF

File size: 678 bytes
Line 
1using System;
2using System.Collections.Generic;
3using System.Linq;
4using System.Text;
5
6namespace Com.Piwigo.Lib.Proxy
7{
8    internal sealed class PwgProxyException : ApplicationException
9    {
10        private static String Defaut_Message = "A PwgProxyException occurs...";
11        internal PwgProxyException() 
12            : base(Defaut_Message)
13        {
14        }
15
16        internal PwgProxyException(String message)
17            : base(Defaut_Message + " " + message)
18        {
19        }
20
21        internal PwgProxyException(String message, Exception innerEx)
22            : base(Defaut_Message + " " + message, innerEx)
23        {
24        }
25    }
26}
Note: See TracBrowser for help on using the repository browser.