Skip to content
node_test_exception.module 306 B
Newer Older
 * A module implementing node related hooks to test API interaction.
 */
function node_test_exception_node_insert($node) {
  if ($node->title == 'testing_transaction_exception') {
    throw new Exception('Test exception for rollback.');
  }
}