<?php namespace App\Exceptions\Service\Database; use App\Exceptions\DisplayException; class TooManyDatabasesException extends DisplayException { public function __construct() { parent::__construct('Operation aborted: creating a new database would put this server over the defined limit.'); } }