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

12 lines
308 B
PHP
Raw Permalink Normal View History

2024-03-28 09:51:45 +03:00
<?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;
}
}