ringfinger/backend/classes/exception/DatabaseException.php

9 lines
125 B
PHP

<?php
declare(strict_types=1);
final class DatabaseException extends Exception
{
public const CONNECTION_FAILED = 1;
}