blob: 676633c125ec5a16ec1465aff6cc87b52048c90d [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2004, 2007 Boeing.
* 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:
* Boeing - initial API and implementation
*******************************************************************************/
package org.eclipse.osee.framework.resource.management.exception;
/**
* @author Roberto E. Escobar
*/
public class EmptyResourceException extends Exception {
private static final long serialVersionUID = 262834138993880676L;
public EmptyResourceException() {
super();
}
public EmptyResourceException(String message, Throwable cause) {
super(message, cause);
}
public EmptyResourceException(String message) {
super(message);
}
public EmptyResourceException(Throwable cause) {
super(cause);
}
}