Free cookie consent management tool by TermsFeed Policy Generator

source: trunk/sources/HeuristicLab.Persistence/3.3/Core/PersistenceException.cs @ 1625

Last change on this file since 1625 was 1625, checked in by epitzer, 15 years ago

Added PersistenceException used consistently for all error conditions in the persistence framework (#548)

File size: 479 bytes
Line 
1using System.Collections.Generic;
2using System;
3using HeuristicLab.Persistence.Interfaces;
4using HeuristicLab.Persistence.Core.Tokens;
5
6namespace HeuristicLab.Persistence.Core {
7
8  public class PersistenceException : Exception {
9    public PersistenceException() : base() { }
10    public PersistenceException(string message) : base(message) { }
11    public PersistenceException(string message, Exception innerException) :  base(message, innerException) { }
12  }
13 
14}
Note: See TracBrowser for help on using the repository browser.