12345678910111213141516171819202122232425262728293031 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- namespace Ant.Exceptions
- {
- [Serializable]
- public class AntORMException : Exception
- {
- public AntORMException()
- : this("An exception occurred in the persistence layer.")
- {
- }
- public AntORMException(string message)
- : base(message)
- {
- }
- public AntORMException(Exception innerException)
- : base(innerException.Message, innerException)
- {
- }
- public AntORMException(string message, Exception innerException)
- : base(message, innerException)
- {
- }
- }
- }
|