ringfinger/backend/classes/exception/DatabaseException.php

9 lines
122 B
PHP
Raw Permalink Normal View History

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