SQLiteException.cs 194 B

123456789101112
  1. using System;
  2. namespace System.Data.SQLiteClient
  3. {
  4. public class SQLiteException : Exception
  5. {
  6. internal SQLiteException (String message) : base(message)
  7. {
  8. }
  9. }
  10. }