Change XDebugAbstractValue member visibility to private.
[phpeclipse.git] / net.sourceforge.phpeclipse.xdebug.core / src / net / sourceforge / phpeclipse / xdebug / php / model / XDebugIntValue.java
index e955ad5..3e1e8dc 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 XDebugIntValue extends XDebugAbstractValue {
-       public XDebugIntValue(XDebugStackFrame frame, Node value) {
+       public XDebugIntValue(XDebugStackFrame frame, Node value) throws DebugException {
                super(frame, value);
        }