Code Coverage
 
Lines
Functions and Methods
Classes and Traits
Total
100.00% covered (success)
100.00%
1 / 1
100.00% covered (success)
100.00%
1 / 1
CRAP
100.00% covered (success)
100.00%
1 / 1
ValidationError
100.00% covered (success)
100.00%
1 / 1
100.00% covered (success)
100.00%
1 / 1
1
100.00% covered (success)
100.00%
1 / 1
 __construct
100.00% covered (success)
100.00%
1 / 1
100.00% covered (success)
100.00%
1 / 1
1
1<?php
2
3namespace Shellbox\Command;
4
5use Shellbox\ShellboxError;
6
7class ValidationError extends ShellboxError {
8    /**
9     * @param string $message
10     */
11    public function __construct( $message ) {
12        parent::__construct( "Shellbox command validation error: $message" );
13    }
14}