Beispiel #1
0
 public PXDatabaseException(string table, object[] keys, string message, Exception inner)
     : base(message, inner)
 {
     _Table     = table;
     _Keys      = keys;
     _ErrorCode = PXDbExceptions.Unknown;
 }
Beispiel #2
0
 public PXDatabaseException(string table, object[] keys, PXDbExceptions errCode, string message)
     : base(message)
 {
     _Table     = table;
     _Keys      = keys;
     _ErrorCode = errCode;
 }
Beispiel #3
0
 public PXDatabaseException(string table, object[] keys, PXDbExceptions errCode, string message, Exception inner)
     : base(message, inner)
 {
     _Table     = table;
     _Keys      = keys;
     _ErrorCode = errCode;
     if (errCode == PXDbExceptions.Deadlock)
     {
         Retry = true;
     }
 }
Beispiel #4
0
		public PXDatabaseException(string table, object[] keys, string message)
			: base(message)
		{
			_Table = table;
			_Keys = keys;
			_ErrorCode = PXDbExceptions.Unknown;
		}
Beispiel #5
0
		public PXDatabaseException(string table, object[] keys, PXDbExceptions errCode, string message)
			: base(message)
		{
			_Table = table;
			_Keys = keys;
			_ErrorCode = errCode;
		}