for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace alsvanzelf\jsonapi\exceptions;
use alsvanzelf\jsonapi\exceptions\Exception;
class InputException extends Exception {
public function __construct($message='', $code=400, $previous=null) {
return parent::__construct($message, $code, $previous);
}