Statistics
| Branch: | Revision:

root / trunk / Pithos.Client.WPF / PithosException.cs @ 34bdb91d

History | View | Annotate | Download (816 Bytes)

1
// -----------------------------------------------------------------------
2
// <copyright file="PithosException.cs" company="Microsoft">
3
// TODO: Update copyright text.
4
// </copyright>
5
// -----------------------------------------------------------------------
6

    
7
namespace Pithos.Client.WPF
8
{
9
    using System;
10
    using System.Collections.Generic;
11
    using System.Linq;
12
    using System.Text;
13

    
14
    /// <summary>
15
    /// TODO: Update summary.
16
    /// </summary>
17
    public class PithosException:Exception
18
    {
19
        public PithosException(){}
20

    
21
        public PithosException(string message)
22
            :base(message)
23
        {
24
            
25
        }
26

    
27
        public PithosException(string message,Exception innerException)
28
            :base(message,innerException)
29
        {
30
            
31
        }
32

    
33
    }    
34
}