comparison dwtx/core/commands/common/NotDefinedException.d @ 3:6518c18a01f7

eclipse.core package without osgi dependencies
author Frank Benoit <benoit@tionex.de>
date Wed, 26 Mar 2008 00:57:19 +0100
parents
children
comparison
equal deleted inserted replaced
2:a012107a911c 3:6518c18a01f7
1 /*******************************************************************************
2 * Copyright (c) 2004, 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 * Port to the D programming language:
11 * Frank Benoit <benoit@tionex.de>
12 *******************************************************************************/
13 module dwtx.core.commands.common.NotDefinedException;
14
15 import dwtx.core.commands.common.CommandException;
16 import dwt.dwthelper.utils;
17
18 /**
19 * Signals that an attempt was made to access the properties of an undefined
20 * object.
21 * <p>
22 * This class is not intended to be extended by clients.
23 * </p>
24 *
25 * @since 3.1
26 */
27 public final class NotDefinedException : CommandException {
28
29 /**
30 * Generated serial version UID for this class.
31 *
32 * @since 3.1
33 */
34 private static final long serialVersionUID = 3257572788998124596L;
35
36 /**
37 * Creates a new instance of this class with the specified detail message.
38 *
39 * @param s
40 * the detail message; may be <code>null</code>.
41 */
42 public this(String s) {
43 super(s);
44 }
45 }