PortableInfobox/services/Parser/Nodes/NodeUnimplemented.php

12 lines
243 B
PHP
Raw Normal View History

<?php
namespace Wikia\PortableInfobox\Parser\Nodes;
class NodeUnimplemented extends Node {
public function getData() {
2015-05-06 11:16:55 +00:00
throw new UnimplementedNodeException( $this->getType() );
}
}
class UnimplementedNodeException extends \Exception {
}