for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
/**
* @copyright 2018 Aleksander Stelmaczonek <[email protected]>
* @license MIT License, see license file distributed with this source code
*/
namespace Koriit\PHPDeps\Config\Exceptions;
use Exception;
class InvalidSchema extends Exception
{
public function __construct($cause = null)
parent::__construct('File does not pass schema validation', 0, $cause);
}