Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'org.eclipse.debug.core/core/org/eclipse/debug/core/DebugException.java')
-rw-r--r--org.eclipse.debug.core/core/org/eclipse/debug/core/DebugException.java22
1 files changed, 11 insertions, 11 deletions
diff --git a/org.eclipse.debug.core/core/org/eclipse/debug/core/DebugException.java b/org.eclipse.debug.core/core/org/eclipse/debug/core/DebugException.java
index b1a7c3dec..8cf814a4b 100644
--- a/org.eclipse.debug.core/core/org/eclipse/debug/core/DebugException.java
+++ b/org.eclipse.debug.core/core/org/eclipse/debug/core/DebugException.java
@@ -11,7 +11,7 @@
package org.eclipse.debug.core;
-
+
import org.eclipse.core.runtime.CoreException;
import org.eclipse.core.runtime.IStatus;
@@ -19,7 +19,7 @@ import org.eclipse.core.runtime.IStatus;
/**
* A checked exception representing a failure.
* <p>
- * Defines status codes relevant to the debug plug-in. When a
+ * Defines status codes relevant to the debug plug-in. When a
* debug exception is thrown, it contains a status object describing
* the cause of the exception. The status objects originating from the
* debug plug-in use the codes defined in this class.
@@ -27,19 +27,19 @@ import org.eclipse.core.runtime.IStatus;
* @see IStatus
* @noextend This class is not intended to be subclassed by clients.
*/
-public class DebugException extends CoreException {
-
+public class DebugException extends CoreException {
+
/**
* All objects that can be serialized should have a stable serialVersionUID
*/
private static final long serialVersionUID = 1L;
-
+
/**
* Indicates a request made of a debug element has failed
* on the target side.
*/
public static final int TARGET_REQUEST_FAILED = 5010;
-
+
/**
* Indicates a request is not supported by the capabilities of a debug element.
* For example, a request was made to terminate an element that does not
@@ -58,23 +58,23 @@ public class DebugException extends CoreException {
* Indicates an internal error. This is an unexpected state.
*/
public static final int INTERNAL_ERROR = 5013;
-
- /**
+
+ /**
* Indicates an improperly configured breakpoint. Breakpoints have a minimal
* set of required attributes as defined by the breakpoint manager.
*
* @see IBreakpointManager
*/
public static final int CONFIGURATION_INVALID = 5014;
-
+
/**
* Indicates a launch configuration could not be restored because its
* launch configuration type definition is missing.
- *
+ *
* @since 3.0
*/
public static final int MISSING_LAUNCH_CONFIGURATION_TYPE = 5020;
-
+
/**
* Constructs a new debug exception with the given status object.
*

Back to the top