ringfinger/backend/classes/exception/DatabaseException.php

9 lines
125 B
PHP
Raw Normal View History

2020-08-19 21:06:45 +02:00
<?php
declare(strict_types=1);
final class DatabaseException extends Exception
{
public const CONNECTION_FAILED = 1;
}