portal.mkgtu.ru/common/components/EnvironmentManager/exceptions/MigrationsNotAppliedExcepti...

12 lines
308 B
PHP
Executable File

<?php
namespace common\components\EnvironmentManager\exceptions;
class MigrationsNotAppliedException extends EnvironmentException
{
public function __construct($message, $code = 0, \Throwable $previous = null) {
parent::__construct($code, $previous);
$this->message = $message;
}
}