2024-09-13 13:49:47 -04:00
|
|
|
<?php
|
|
|
|
|
2024-12-12 04:33:10 -05:00
|
|
|
namespace Socialbox\Exceptions;
|
2024-09-13 13:49:47 -04:00
|
|
|
|
2024-12-12 04:33:10 -05:00
|
|
|
use Exception;
|
|
|
|
use Throwable;
|
2024-09-13 13:49:47 -04:00
|
|
|
|
2024-12-12 04:33:10 -05:00
|
|
|
class DatabaseOperationException extends Exception
|
2024-09-13 13:49:47 -04:00
|
|
|
{
|
2024-12-12 04:33:10 -05:00
|
|
|
public function __construct(string $message, ?Throwable $throwable=null)
|
|
|
|
{
|
|
|
|
parent::__construct($message, 500, $throwable);
|
|
|
|
}
|
|
|
|
}
|