Free cookie consent management tool by TermsFeed Policy Generator

Changeset 4413


Ignore:
Timestamp:
09/16/10 14:47:51 (14 years ago)
Author:
cneumuel
Message:

Add constructor to PersistenceException to enable serialization (#1190)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/sources/HeuristicLab.Persistence/3.3/Core/PersistenceException.cs

    r4068 r4413  
    2323using System.Collections.Generic;
    2424using System.Text;
     25using System.Runtime.Serialization;
    2526
    2627namespace HeuristicLab.Persistence.Core {
     
    6566    }
    6667
     68    protected PersistenceException(SerializationInfo info, StreamingContext context) : base(info, context) { }
     69
    6770    /// <summary>
    6871    /// Returns a <see cref="System.String"/> that represents this instance.
Note: See TracChangeset for help on using the changeset viewer.