public override void WriteLine(string message)
        {
            // F**K YOU SQLITE !
            if (message != null && message.StartsWith("Native library pre-loader is trying to load native"))
            {
                return;
            }
            var exception = new AssertionFailedException(message);

            throw exception;
        }
        public override void Write(string message)
        {
            var exception = new AssertionFailedException(message);

            throw exception;
        }