KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > eclipse > core > commands > ParameterValuesException


1 /*******************************************************************************
2  * Copyright (c) 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.core.commands;
13
14 import org.eclipse.core.commands.common.CommandException;
15
16 /**
17  * <p>
18  * Signals that a problem has occurred while trying to create an instance of
19  * <code>IParameterValues</code>. In applications based on the registry
20  * provided by core, this usually indicates a problem creating an
21  * <code>IExecutableExtension</code>. For other applications, this exception
22  * could be used to signify any general problem during initialization.
23  * </p>
24  *
25  * @since 3.1
26  *
27  */

28 public final class ParameterValuesException extends CommandException {
29
30     /**
31      * Generated serial version UID for this class.
32      */

33     private static final long serialVersionUID = 3618976793520845623L;
34
35     /**
36      * Creates a new instance of this class with the specified detail message
37      * and cause.
38      *
39      * @param message
40      * the detail message; may be <code>null</code>.
41      * @param cause
42      * the cause; may be <code>null</code>.
43      */

44     public ParameterValuesException(final String JavaDoc message, final Throwable JavaDoc cause) {
45         super(message, cause);
46     }
47 }
48
Popular Tags