10 lines
306 B
PHP
10 lines
306 B
PHP
<?php
|
|
|
|
namespace MongoDB\Driver\Exception;
|
|
|
|
/**
|
|
* Thrown when the driver fails to establish an SSL connection with the server.
|
|
* @link https://php.net/manual/en/class.mongodb-driver-exception-sslconnectionexception.php
|
|
*/
|
|
class SSLConnectionException extends ConnectionException implements Exception {}
|