]> git.mxchange.org Git - core.git/blobdiff - framework/main/classes/output/debug/web/class_DebugWebOutput.php
Continued:
[core.git] / framework / main / classes / output / debug / web / class_DebugWebOutput.php
index 15df039837145ac8468332b2a6e83996557bc5fc..805b9e96854af2e98a41eb03937fc8da35a11213 100644 (file)
@@ -4,6 +4,7 @@ namespace Org\Mxchange\CoreFramework\Output\Debug;
 
 // Import framework stuff
 use Org\Mxchange\CoreFramework\Debug\Debugger;
+use Org\Mxchange\CoreFramework\Generic\FrameworkInterface;
 use Org\Mxchange\CoreFramework\Generic\UnsupportedOperationException;
 use Org\Mxchange\CoreFramework\Output\Debug\BaseDebugOutput;
 use Org\Mxchange\CoreFramework\Stream\Output\OutputStreamer;
@@ -90,7 +91,7 @@ class DebugWebOutput extends BaseDebugOutput implements Debugger, OutputStreamer
         */
        public function streamData (string $data) {
                self::createDebugInstance(__CLASS__, __LINE__)->debugOutput('Unhandled ' . strlen($data) . ' bytes in this stream.');
-               throw new UnsupportedOperationException([$this, __FUNCTION__], self::EXCEPTION_UNSPPORTED_OPERATION);
+               throw new UnsupportedOperationException([$this, __FUNCTION__], FrameworkInterface::EXCEPTION_UNSPPORTED_OPERATION);
        }
 
 }