ConceptNameInUseException.java

/**
 * The contents of this file are subject to the OpenMRS Public License
 * Version 1.0 (the "License"); you may not use this file except in
 * compliance with the License. You may obtain a copy of the License at
 * http://license.openmrs.org
 *
 * Software distributed under the License is distributed on an "AS IS"
 * basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the
 * License for the specific language governing rights and limitations
 * under the License.
 *
 * Copyright (C) OpenMRS, LLC.  All Rights Reserved.
 */
package org.openmrs.api;

/**
 * This exception is thrown when one attempts to delete a concept that has a conceptName that is
 * being used by an observation
 * 
 * @see ObsService#getObservationCount(java.util.List, boolean)
 * @see ConceptService#saveConcept(org.openmrs.Concept)
 */
public class ConceptNameInUseException extends APIException {
	
	private static final long serialVersionUID = 1034355111901825174L;
	
	/**
	 * Generic constructor that gives a normal message about editing not being allowed to the user.
	 */
	public ConceptNameInUseException() {
		this("The conceptName cannot be changed if it is already used/associated to an observation");
	}
	
	/**
	 * Convenience constructor to give the user a message other than normal default one
	 * 
	 * @param message the String to show to the user as to why the conceptName's name can't be
	 *            changed
	 */
	public ConceptNameInUseException(String message) {
		super(message);
	}
	
	/**
	 * Convenience constructor to give the user a message other than the normal one and to chain
	 * this exception with a parent exception.
	 * 
	 * @param message the String to show to the user as to why the conceptName's name can't be
	 *            changed
	 * @param cause the parent exception
	 */
	public ConceptNameInUseException(String message, Throwable cause) {
		super(message, cause);
	}
	
	/**
	 * Convenience constructor used to only set the parent exception to chain with. This does not
	 * set the error message for the user as to why an exception is being thrown. The
	 * {@link #ConceptNameInUseException(String, Throwable)} constructor is preferred over this one.
	 * 
	 * @param cause the parent exception
	 */
	public ConceptNameInUseException(Throwable cause) {
		super(cause);
	}
}