using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace HelperDB { class DbAccessException : ApplicationException { public DbAccessException() { } public DbAccessException(string message) : base(message) { } } }