TOP-framework/framework/library/exception/DatabaseException.php

17 lines
402 B
PHP

<?php
namespace top\library\exception;
class DatabaseException extends BaseException
{
public function __construct($message = "", $code = 0, \Throwable $previous = null)
{
parent::__construct('[DatabaseException]' . $message, $code, $previous);
}
public function handler($exception = null)
{
parent::handler($this); // TODO: Change the autogenerated stub
}
}