blob: 3351aa6556cded5e116a8953d9b37ae805e50481 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2001, 2004 IBM Corporation and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html
*
* Contributors:
* IBM Corporation - initial API and implementation
*******************************************************************************/
package org.eclipse.jst.j2ee.commonarchivecore.internal.exception;
/**
* @deprecated No Longer used; check for null instead Exception which occurs if an attempt is made
* to access a non-existent module dd element from an ear file
*/
public class NoModuleElementException extends ArchiveException {
/**
* NoModuleElementException constructor comment.
*/
public NoModuleElementException() {
super();
}
/**
* NoModuleElementException constructor comment.
*
* @param s
* java.lang.String
*/
public NoModuleElementException(String s) {
super(s);
}
}