Blacker.MangaScraper.Library.SQLite.SQLiteDALBase.RollbackTransaction C# (CSharp) 메소드

RollbackTransaction() 보호된 메소드

protected RollbackTransaction ( System.Data.SQLite.SQLiteTransaction transaction ) : void
transaction System.Data.SQLite.SQLiteTransaction
리턴 void
        protected void RollbackTransaction(SQLiteTransaction transaction)
        {
            try
            {
                transaction.Rollback();
            }
            catch (Exception ex)
            {
                _log.Error("Unable to rollback transaction.", ex);

                throw new StorageException("Unable to rollback transaction.", ex);
            }
        }