for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Ballen\GPIO\Exceptions;
use Throwable;
/**
* GPIO
* A RaspberryPi GPIO library written in PHP.
*
* @author Bobby Allen <[email protected]>
* @license http://www.gnu.org/licenses/gpl-3.0.html
* @link https://github.com/allebb/gpio
* @link http://www.bobbyallen.me
* @package Ballen\GPIO\Exceptions
*/
class GPIOException extends \Exception
{
public function __construct($message = "", $code = 0, Throwable $previous = null)
parent::__construct($message, $code, $previous);
}