1 11 12 package org.eclipse.ui.texteditor; 13 14 15 import org.eclipse.core.runtime.CoreException; 16 import org.eclipse.core.runtime.IStatus; 17 18 27 public class ValidateStateException extends CoreException { 28 29 36 private static final long serialVersionUID= 3834309544406233910L; 37 38 41 public ValidateStateException(IStatus status) { 42 super(status); 43 } 44 45 } 46 | Popular Tags |