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.keys;
11:
12: /**
13: * <p>
14: * An exception indicating problems while parsing formal string representations
15: * of either <code>KeyStroke</code> or <code>KeySequence</code> objects.
16: * </p>
17: * <p>
18: * <code>ParseException</code> objects are immutable. Clients are not
19: * permitted to extend this class.
20: * </p>
21: *
22: * @deprecated Please use org.eclipse.jface.bindings.keys.ParseException
23: * @since 3.0
24: */
25: public final class ParseException extends Exception {
26:
27: /**
28: * Generated serial version UID for this class.
29: * @since 3.1
30: */
31: private static final long serialVersionUID = 3257009864814376241L;
32:
33: /**
34: * Constructs a <code>ParseException</code> with the specified detail
35: * message.
36: *
37: * @param s
38: * the detail message.
39: */
40: public ParseException(final String s) {
41: super(s);
42: }
43: }
|