|
From: <mba...@us...> - 2007-01-31 22:27:39
|
Revision: 1899
http://svn.sourceforge.net/rubyeclipse/?rev=1899&view=rev
Author: mbarchfe
Date: 2007-01-31 14:27:37 -0800 (Wed, 31 Jan 2007)
Log Message:
-----------
Added better abstraction for debugger access since we need two socket connections for rubydebug
Modified Paths:
--------------
trunk/org.rubypeople.rdt.debug.core/src/org/rubypeople/rdt/internal/debug/core/DebuggerNotFoundException.java
Modified: trunk/org.rubypeople.rdt.debug.core/src/org/rubypeople/rdt/internal/debug/core/DebuggerNotFoundException.java
===================================================================
--- trunk/org.rubypeople.rdt.debug.core/src/org/rubypeople/rdt/internal/debug/core/DebuggerNotFoundException.java 2007-01-31 22:22:00 UTC (rev 1898)
+++ trunk/org.rubypeople.rdt.debug.core/src/org/rubypeople/rdt/internal/debug/core/DebuggerNotFoundException.java 2007-01-31 22:27:37 UTC (rev 1899)
@@ -3,6 +3,11 @@
public class DebuggerNotFoundException extends RuntimeException {
+ public DebuggerNotFoundException(String message) {
+ super(message);
+ // TODO Auto-generated constructor stub
+ }
+
private static final long serialVersionUID = -7048656572730937337L;
public DebuggerNotFoundException() {
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|