PHP code example of internations / exception-bundle
1. Go to this page and download the library: Download internations/exception-bundle 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/ */
internations / exception-bundle example snippets
namespace MyVendor\MyBundle\Exception;
use RuntimeException as BaseRuntimeException;
class RuntimeException extends BaseRuntimeException implements ExceptionInterface
{
}
namespace MyVendor\MyBundle;
use RuntimeException;
...
throw new RuntimeException('Runtime error');
...
throw new \InvalidArgumentException('Invalid argument');
namespace MyVendor\MyBundle;
use MyVendor\MyBundle\Exception\InvalidArgumentException;
use MyVendor\MyBundle\Exception\RuntimeException;
...
throw new RuntimeException('Runtime error');
...
throw new InvalidArgumentException('Invalid argument');
...
...
class AppKernel extends Kernel
{
public function registerBundles()
{
$bundles = array(
...
);
if ($this->debug) {
$bundles[] = new InterNations\Bundle\ExceptionBundle\InterNationsExceptionBundle();
}
}
}