Gotta catch 'em all!!! (#164)

* Update get_dialogs

* Gotta catch 'em all!!!
This commit is contained in:
giuseppeM99 2017-08-02 15:12:18 +02:00 committed by Daniil Gentili
parent 1c742559cc
commit 04e1b8c4d7
2 changed files with 11 additions and 0 deletions

1
.gitignore vendored
View File

@ -76,6 +76,7 @@ token.php
*~uploading*
session.mad
*.madeline
*.madeline.lock
enc.tar.xz
a
web_data.php

View File

@ -143,6 +143,16 @@ class APIFactory
return ['error_code' => $e->getCode(), 'error' => $e->getMessage()];
} catch (\danog\MadelineProto\RPCErrorException $e) {
return ['error_code' => $e->getCode(), 'error' => $e->getMessage()];
} catch (\danog\MadelineProto\TL\Exception $e) {
return ['error_code' => $e->getCode(), 'error' => $e->getMessage()];
} catch (\danog\MadelineProto\NothingInTheSocketException $e) {
return ['error_code' => $e->getCode(), 'error' => $e->getMessage()];
} catch (\danog\MadelineProto\PTSException $e) {
return ['error_code' => $e->getCode(), 'error' => $e->getMessage()];
} catch (\danog\MadelineProto\SecurityException $e) {
return ['error_code' => $e->getCode(), 'error' => $e->getMessage()];
} catch (\danog\MadelineProto\TL\Conversion\Exception $e) {
return ['error_code' => $e->getCode(), 'error' => $e->getMessage()];
}
}
}