internal ADAPException(ADAPExceptionType exceptionType, string message, Exception innerEx)
     : base(message, innerEx)
 {
     this.type = exceptionType;
 }
 internal ADAPException(ADAPExceptionType exceptionType, string message)
     : base(message)
 {
     this.type = exceptionType;
 }
 internal ADAPException(ADAPExceptionType exceptionType)
     : base()
 {
     this.type = exceptionType;
 }
Example #4
0
 internal ADAPException(ADAPExceptionType exceptionType, string message, Exception innerEx)
     : base(message, innerEx)
 {
     this.type = exceptionType;
 }
Example #5
0
 internal ADAPException(ADAPExceptionType exceptionType, string message)
     : base(message)
 {
     this.type = exceptionType;
 }
Example #6
0
 internal ADAPException(ADAPExceptionType exceptionType)
     : base()
 {
     this.type = exceptionType;
 }