Ignore:
Timestamp:
Oct 10, 2010, 10:45:43 PM (14 years ago)
Author:
bayral
Message:

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

File:
1 edited

Legend:

Unmodified
Added
Removed
  • extensions/PiwigoLib/PiwigoLib/Proxy/PwgProxyException.cs

    r3816 r7149  
    66namespace Com.Piwigo.Lib.Proxy
    77{
    8     public sealed class PwgProxyException : ApplicationException
     8    internal sealed class PwgProxyException : ApplicationException
    99    {
    1010        private static String Defaut_Message = "A PwgProxyException occurs...";
    11         public PwgProxyException()
     11        internal PwgProxyException()
    1212            : base(Defaut_Message)
    1313        {
    1414        }
    1515
    16         public PwgProxyException(String message)
     16        internal PwgProxyException(String message)
    1717            : base(Defaut_Message + " " + message)
    1818        {
    1919        }
    2020
    21         public PwgProxyException(String message, Exception innerEx)
     21        internal PwgProxyException(String message, Exception innerEx)
    2222            : base(Defaut_Message + " " + message, innerEx)
    2323        {
Note: See TracChangeset for help on using the changeset viewer.