View file vendor/robmorgan/phinx/src/Phinx/Db/Adapter/UnsupportedColumnTypeException.php

File size: 393B
<?php

/**
 * MIT License
 * For full license information, please view the LICENSE file that was distributed with this source code.
 */

namespace Phinx\Db\Adapter;

use RuntimeException;

/**
 * Exception thrown when a column type doesn't match a Phinx type.
 *
 * @author Martijn Gastkemper <[email protected]>
 */
class UnsupportedColumnTypeException extends RuntimeException
{
}