blob: be6b5cc7f5871e706364282f66db5958c7605b7c [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2002 IBM Corporation and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Common Public License v0.5
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/cpl-v05.html
*
* Contributors:
* IBM - Initial implementation
******************************************************************************/
package org.eclipse.team.internal.core.target;
public class BaseIdentifierNotInitializedException extends Exception {
/**
* Default constructor for a <code>TeamProviderException</code>.
*/
public BaseIdentifierNotInitializedException() {
super();
}
/**
* Constructor for a <code>TeamProviderException</code> that takes
* a string description of the cause of the exception.
*
* @param message a message describing the cause of the exception.
*/
public BaseIdentifierNotInitializedException(String message) {
super(message);
}
}