PHP code example of nimayneb / exceptionist
1. Go to this page and download the library: Download nimayneb/exceptionist library. Choose the download type require. 2. Extract the ZIP file and open the index.php. 3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
nimayneb / exceptionist example snippets
use JBR\Exceptionist\InvalidArgument;
use JBR\Exceptionist\InvalidityReason:
function throwsAnException() {
throw new InvalidArgument('An Argument is invalid');
}
try {
throwsAnException();
} catch (InvalidityReason $e) {
echo $e->getMessage();
}
use JBR\Exceptionist\EmptyArgument;
use JBR\Exceptionist\InvalidityReason:
use JBR\Exceptionist\DeficiencyReason;
function throwsAlsoAnException() {
throw new EmptyArgument('An Argument is empty');
}
try {
throwsAlsoAnException();
} catch (InvalidityReason|DeficiencyReason $e) {
echo $e->getMessage();
}