DeveelDB  20151217
complete SQL database system, primarly developed for .NET/Mono frameworks
QueryException.cs
Go to the documentation of this file.
1 using System;
2 
3 namespace Deveel.Data.Linq {
4  public class QueryException : Exception {
5  public QueryException(string message, Exception innerException)
6  : base(message, innerException) {
7  }
8 
9  public QueryException(string message)
10  : base(message) {
11  }
12 
13  public QueryException() {
14  }
15  }
16 }
QueryException(string message, Exception innerException)