1 11 package org.eclipse.debug.core; 12 13 14 15 import org.eclipse.core.runtime.CoreException; 16 import org.eclipse.core.runtime.IStatus; 17 18 19 32 public class DebugException extends CoreException { 33 34 37 private static final long serialVersionUID = 1L; 38 39 43 public static final int TARGET_REQUEST_FAILED = 5010; 44 45 50 public static final int NOT_SUPPORTED = 5011; 51 52 57 public static final int REQUEST_FAILED = 5012; 58 59 62 public static final int INTERNAL_ERROR = 5013; 63 64 70 public static final int CONFIGURATION_INVALID = 5014; 71 72 78 public static final int MISSING_LAUNCH_CONFIGURATION_TYPE = 5020; 79 80 86 public DebugException(IStatus status) { 87 super(status); 88 } 89 90 } 91 | Popular Tags |