for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
/**
* Codeburner Framework.
*
* @author Alex Rohleder <[email protected]>
* @copyright 2016 Alex Rohleder
* @license http://opensource.org/licenses/MIT
*/
namespace Codeburner\Annotator\Exceptions;
* Exception throwed when a annotation was used wrong.
class BadAnnotationException extends AnnotationException
{
public function __construct($annotation)
parent::__construct("The `$annotation` annotation was used wrong. Please check the arguments.");
}