internal QueryProcessingException(QueryProcessingError error) : this(error, null)
 {
     this.error = error;
 }
Ejemplo n.º 2
0
 internal QueryProcessingException(QueryProcessingError error) : this(error, null)
 {
     this.error = error;
 }
 internal QueryProcessingException(QueryProcessingError error, string message) : base(message, (Exception) null)
 {
     this.error = error;
 }
Ejemplo n.º 4
0
 internal QueryProcessingException(QueryProcessingError error, string message) : base(message, null)
 {
     this.error = error;
 }