Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
03/14/10 00:42:28 (14 years ago)
Author:
epitzer
Message:

Update API docs. (#548)

File:
1 edited

Legend:

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

    r2106 r3016  
    88namespace HeuristicLab.Persistence.Core {
    99
     10  /// <summary>
     11  /// Exception thrown by components inside the persistence framework.
     12  /// </summary>
    1013  [Serializable] 
    1114  public class PersistenceException : Exception {
     15
     16    /// <summary>
     17    /// Initializes a new instance of the <see cref="PersistenceException"/> class.
     18    /// </summary>
    1219    public PersistenceException() : base() { }
     20
     21    /// <summary>
     22    /// Initializes a new instance of the <see cref="PersistenceException"/> class.
     23    /// </summary>
     24    /// <param name="message">The message.</param>
    1325    public PersistenceException(string message) : base(message) { }
    14     public PersistenceException(string message, Exception innerException) :  base(message, innerException) { }
     26
     27    /// <summary>
     28    /// Initializes a new instance of the <see cref="PersistenceException"/> class.
     29    /// </summary>
     30    /// <param name="message">The message.</param>
     31    /// <param name="innerException">The inner exception.</param>
     32    public PersistenceException(string message, Exception innerException) :
     33      base(message, innerException) { }
     34
     35    /// <summary>
     36    /// Initializes a new instance of the <see cref="PersistenceException"/> class.
     37    /// </summary>
     38    /// <param name="message">The message.</param>
     39    /// <param name="innerExceptions">The inner exceptions.</param>
    1540    public PersistenceException(string message, IEnumerable<Exception> innerExceptions)
    1641      : base(message) {
     
    2146      }
    2247    }
     48
     49    /// <summary>
     50    /// Returns a <see cref="System.String"/> that represents this instance.
     51    /// </summary>
     52    /// <returns>
     53    /// A <see cref="System.String"/> that represents this instance.
     54    /// </returns>
     55    /// <PermissionSet>
     56    ///   <IPermission class="System.Security.Permissions.FileIOPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" PathDiscovery="*AllFiles*"/>
     57    /// </PermissionSet>
    2358    public override string ToString() {
    2459      var sb = new StringBuilder()
Note: See TracChangeset for help on using the changeset viewer.