Change XDebugAbstractValue member visibility to private.
[phpeclipse.git] / net.sourceforge.phpeclipse.xdebug.core / src / net / sourceforge / phpeclipse / xdebug / php / model / XDebugStringValue.java
index 6fc0371..fcbd867 100644 (file)
@@ -1,9 +1,10 @@
 package net.sourceforge.phpeclipse.xdebug.php.model;
 
+import org.eclipse.debug.core.DebugException;
 import org.w3c.dom.Node;
 
 public class XDebugStringValue extends XDebugAbstractValue {
-       public XDebugStringValue(XDebugStackFrame variable, Node value) {
+       public XDebugStringValue(XDebugStackFrame variable, Node value) throws DebugException {
                super(variable, value);
        }