Code Coverage |
||||||||||
Classes and Traits |
Functions and Methods |
Lines |
||||||||
Total | |
0.00% |
0 / 1 |
|
0.00% |
0 / 1 |
CRAP | |
0.00% |
0 / 2 |
UnimplementedException | |
0.00% |
0 / 1 |
|
0.00% |
0 / 1 |
2 | |
0.00% |
0 / 2 |
__construct | |
0.00% |
0 / 1 |
2 | |
0.00% |
0 / 2 |
<?php | |
declare( strict_types = 1 ); | |
namespace Wikimedia\Dodo; | |
use Exception; | |
/** | |
* Exception thrown when DOM API functionality which is not (or not yet) | |
* implemented in Dodo is used. | |
*/ | |
class UnimplementedException extends Exception { | |
/** | |
* Create a new UnimplementedException. | |
* | |
* @param string $message | |
*/ | |
public function __construct( string $message = "Unimplemented" ) { | |
parent::__construct( $message ); | |
} | |
} |