01: /*******************************************************************************
02: * Copyright (c) 2000, 2005 IBM Corporation and others.
03: * All rights reserved. This program and the accompanying materials
04: * are made available under the terms of the Eclipse Public License v1.0
05: * which accompanies this distribution, and is available at
06: * http://www.eclipse.org/legal/epl-v10.html
07: *
08: * Contributors:
09: * IBM Corporation - initial API and implementation
10: *******************************************************************************/package org.eclipse.ui.texteditor;
11:
12: import org.eclipse.core.runtime.CoreException;
13: import org.eclipse.core.runtime.IStatus;
14:
15: /**
16: * Formerly thrown by <code>AbstractDocumentProvider.doValidateState(Object, Object)</code>.
17: * <p>
18: * This class is not intended to be serialized.
19: * </p>
20: *
21: * @deprecated
22: * @since 2.1
23: */
24: public class ValidateStateException extends CoreException {
25:
26: /**
27: * Serial version UID for this class.
28: * <p>
29: * Note: This class is not intended to be serialized.
30: * </p>
31: * @since 3.1
32: */
33: private static final long serialVersionUID = 3834309544406233910L;
34:
35: /*
36: * @see CoreException#CoreException(org.eclipse.core.runtime.IStatus)
37: */
38: public ValidateStateException(IStatus status) {
39: super(status);
40: }
41:
42: }
|