# give/4.16.8.1/src/Framework/Migrations/Exceptions/DatabaseMigrationException.php

GiveWP – Donation Plugin and Fundraising Platform, version 4.16.8.1. 18 lines.

- Page: https://pluginprobe.com/plugins/give/4.16.8.1/code/src/Framework/Migrations/Exceptions/DatabaseMigrationException.php
- Raw: https://pluginprobe.com/plugins/give/4.16.8.1/raw/src/Framework/Migrations/Exceptions/DatabaseMigrationException.php
- Modified: 2021-11-23T23:55:18+00:00

Line numbers below start at 1. Link to a line or a range by appending a fragment to the
page URL, for example `https://pluginprobe.com/plugins/give/4.16.8.1/code/src/Framework/Migrations/Exceptions/DatabaseMigrationException.php#L10-L20`.

```php
<?php

namespace Give\Framework\Migrations\Exceptions;

use Exception;
use Give\Framework\Exceptions\Contracts\LoggableException;
use Give\Framework\Exceptions\Traits\Loggable;

/**
 * Class DatabaseMigrationException
 *
 * Represents an exception that occurred when executing a migration within the database
 */
class DatabaseMigrationException extends Exception implements LoggableException
{
    use Loggable;
}

```
