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) { } } }