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

Last change on this file since 3816 was 3816, checked in by bayral, 15 years ago

Initial import

File size: 670 bytes
Line 
1using System;
2using System.Collections.Generic;
3using System.Linq;
4using System.Text;
5
6namespace Com.Piwigo.Lib.Proxy
7{
8    public sealed class PwgProxyException : ApplicationException
9    {
10        private static String Defaut_Message = "A PwgProxyException occurs...";
11        public PwgProxyException() 
12            : base(Defaut_Message)
13        {
14        }
15
16        public PwgProxyException(String message)
17            : base(Defaut_Message + " " + message)
18        {
19        }
20
21        public 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.