TaoLer/vendor/topthink/think-migration/phinx/Migration/IrreversibleMigrationException.php

21 lines
384 B
PHP
Raw Normal View History

2024-04-01 10:04:16 +08:00
<?php
/**
* MIT License
* For full license information, please view the LICENSE file that was distributed with this source code.
*/
namespace Phinx\Migration;
use Exception;
/**
* Exception class thrown when migrations cannot be reversed using the 'change'
* feature.
*
* @author Rob Morgan <robbym@gmail.com>
*/
class IrreversibleMigrationException extends Exception
{
}