KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > eclipse > ui > texteditor > ValidateStateException


1 /*******************************************************************************
2  * Copyright (c) 2000, 2005 IBM Corporation and others.
3  * All rights reserved. This program and the accompanying materials
4  * are made available under the terms of the Eclipse Public License v1.0
5  * which accompanies this distribution, and is available at
6  * http://www.eclipse.org/legal/epl-v10.html
7  *
8  * Contributors:
9  * IBM Corporation - initial API and implementation
10  *******************************************************************************/

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 /**
19  * Formerly thrown by <code>AbstractDocumentProvider.doValidateState(Object, Object)</code>.
20  * <p>
21  * This class is not intended to be serialized.
22  * </p>
23  *
24  * @deprecated
25  * @since 2.1
26  */

27 public class ValidateStateException extends CoreException {
28
29     /**
30      * Serial version UID for this class.
31      * <p>
32      * Note: This class is not intended to be serialized.
33      * </p>
34      * @since 3.1
35      */

36     private static final long serialVersionUID= 3834309544406233910L;
37
38     /*
39      * @see CoreException#CoreException(org.eclipse.core.runtime.IStatus)
40      */

41      public ValidateStateException(IStatus status) {
42         super(status);
43     }
44
45 }
46
Popular Tags