Last change
on this file since 1842 was
1823,
checked in by epitzer, 15 years ago
|
Namespace refactoring: rename formatters & decomposers -> primitive and composite serializers. (#603)
|
File size:
570 bytes
|
Line | |
---|
1 | using System.Collections.Generic;
|
---|
2 | using System;
|
---|
3 | using HeuristicLab.Persistence.Interfaces;
|
---|
4 | using HeuristicLab.Persistence.Core.Tokens;
|
---|
5 | using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
|
---|
6 |
|
---|
7 | namespace 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.