示例#1
0
 /// <summary>
 /// Initializes a new instance of the <c>NLiteException</c> class with the specified
 /// error message.
 /// </summary>
 /// <param name="message">The message that describes the error.</param>
 public NLiteException(string message) : base(message)
 {
     ErrorState = new ErrorState();
 }
示例#2
0
 /// <summary>
 /// Initializes a new instance of the <c>NLiteException</c> class.
 /// </summary>
 public NLiteException() : base()
 {
     ErrorState = new ErrorState();
 }