Added hammock project to debug streaming issues
[pithos-ms-client] / trunk / hammock / src / net35 / Hammock / Validation / ValidationException.cs
1 using System;
2
3 namespace Hammock.Validation
4 {
5 #if !SILVERLIGHT
6     [Serializable]
7 #endif
8     public class ValidationException : Exception
9     {
10         public ValidationException()
11         {
12
13         }
14
15         public ValidationException(string message) : base(message)
16         {
17
18         }
19     }
20 }