Free cookie consent management tool by TermsFeed Policy Generator

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

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

Add missing attributes and create type hierarchy for formatters. (#548)

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