<?php
namespace DoctrineDBALDriverSQLite3;
use DoctrineDBALDriverAbstractException;
/** @internal */
final class Exception extends AbstractException
{
public static function new(Exception $exception): self
{
return new self($exception->getMessage(), null, (int) $exception->getCode(), $exception);
}
}