From eccf794c2f2c1255e754c9bc3be8102c43921c55 Mon Sep 17 00:00:00 2001 From: Paul Rock Date: Tue, 29 Dec 2020 01:07:02 +0300 Subject: [PATCH] Description of new exceptions fixed --- src/Exceptions/BadCredentialsException.php | 6 +++--- src/Exceptions/ConnectException.php | 5 +++-- src/Exceptions/StreamException.php | 1 - 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/src/Exceptions/BadCredentialsException.php b/src/Exceptions/BadCredentialsException.php index e393ec4..1bc958b 100644 --- a/src/Exceptions/BadCredentialsException.php +++ b/src/Exceptions/BadCredentialsException.php @@ -3,10 +3,10 @@ namespace RouterOS\Exceptions; /** - * Class ClientException - * Exception thrown when a password or login is wrong. + * Class BadCredentialsException thrown when a password or login is wrong. + * * @package RouterOS\Exceptions - * @since 0.4 + * @since 1.3.3 */ class BadCredentialsException extends ClientException { diff --git a/src/Exceptions/ConnectException.php b/src/Exceptions/ConnectException.php index 15fea9e..1e7acd8 100644 --- a/src/Exceptions/ConnectException.php +++ b/src/Exceptions/ConnectException.php @@ -3,9 +3,10 @@ namespace RouterOS\Exceptions; /** - * Class ClientException - * Exception thrown when a connection cannot be established. + * Class ConnectException thrown when a connection cannot be established. + * * @package RouterOS\Exceptions + * @since 1.3.3 */ class ConnectException extends ClientException { diff --git a/src/Exceptions/StreamException.php b/src/Exceptions/StreamException.php index c7dca3e..0105db8 100644 --- a/src/Exceptions/StreamException.php +++ b/src/Exceptions/StreamException.php @@ -8,7 +8,6 @@ namespace RouterOS\Exceptions; * @package RouterOS\Exceptions * @since 0.9 */ - class StreamException extends \Exception { }