public CustomDatabaseUpdateException(UpdateExceptionType exceptionType, string format, Exception innerException, params object[] args)
     : base(string.Format(format, args), innerException)
 {
     ExceptionType = exceptionType;
 }
 public CustomDatabaseUpdateException(UpdateExceptionType exceptionType, string message)
     : base(message)
 {
     ExceptionType = exceptionType;
 }
 public CustomDatabaseUpdateException(UpdateExceptionType exceptionType, string message, Exception innerException)
     : base(message, innerException)
 {
     ExceptionType = exceptionType;
 }
 public CustomDatabaseUpdateException(UpdateExceptionType exceptionType)
     : base()
 {
     ExceptionType = exceptionType;
 }