mirror of
https://github.com/coollabsio/coolify.git
synced 2026-08-29 18:14:38 -05:00
14 lines
263 B
PHP
14 lines
263 B
PHP
<?php
|
|
|
|
namespace App\Support\DatabaseImport;
|
|
|
|
use RuntimeException;
|
|
|
|
class DatabaseImportException extends RuntimeException
|
|
{
|
|
public function __construct(string $message, public readonly int $status = 422)
|
|
{
|
|
parent::__construct($message);
|
|
}
|
|
}
|