Changeset 391

Show
Ignore:
Timestamp:
03/16/07 21:14:15 (2 years ago)
Author:
schst
Message:

Fixed bug #5: meaningful exception message in addToDom()

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/src/main/php/net/stubbles/xml/stubDomXMLStreamWriter.php

    r192 r391  
    194194    protected function addToDom(DOMNode $node) { 
    195195        if (count($this->elementStack) < 1) { 
    196             throw new stubXMLException('Operation is not supported.'); 
     196            throw new stubXMLException('No tag is currently open, you need to call writeStartElement() first.'); 
    197197        } 
    198198        $current = end($this->elementStack);