Winify – Blame information for rev
?pathlinks?
Rev | Author | Line No. | Line |
---|---|---|---|
4 | office | 1 | using System; |
2 | using System.Collections.Generic; |
||
3 | using System.Xml.Schema; |
||
4 | |||
8 | office | 5 | namespace Winify.Servers.Serialization |
4 | office | 6 | { |
15 | office | 7 | public class SerializationFailure : SerializationState |
4 | office | 8 | { |
9 | #region Public Enums, Properties and Fields |
||
10 | |||
11 | public Exception Exception { get; set; } |
||
12 | |||
13 | public List<ValidationEventArgs> ValidationEventArgs { get; } |
||
14 | |||
15 | #endregion |
||
16 | |||
17 | #region Constructors, Destructors and Finalizers |
||
18 | |||
15 | office | 19 | public SerializationFailure(Exception exception) |
4 | office | 20 | { |
21 | Exception = exception; |
||
22 | } |
||
23 | |||
15 | office | 24 | public SerializationFailure(Exception exception, List<ValidationEventArgs> validationEventArgs) : |
4 | office | 25 | this(exception) |
26 | { |
||
27 | ValidationEventArgs = validationEventArgs; |
||
28 | } |
||
29 | |||
30 | #endregion |
||
31 | } |
||
32 | } |