All Downloads are FREE. Search and download functionalities are using the official Maven repository.

nyla.solutions.core.exception.ConcurrencyException Maven / Gradle / Ivy

Go to download

This Java API provides support for application utilities (application configuration, data encryption, debugger, text processing, and more).

There is a newer version: 2.3.0
Show newest version
/**
 * 
 */
package nyla.solutions.core.exception;

import java.util.Map;

/**
 * @author Gregory Green
 *
 */
public class ConcurrencyException extends SystemException
{
	public static final String DEFAULT_ERROR_CODE = "CONCUR001";
	
	/**
	 * 
	 */
	private static final long serialVersionUID = 8792691385402410012L;

	/**
	 * 
	 */
	public ConcurrencyException()
	{
		this.setCode(DEFAULT_ERROR_CODE);
	}

	/**
	 * @param message
	 */
	public ConcurrencyException(String message)
	{
		super(message);
		this.setCode(DEFAULT_ERROR_CODE);
	}

	/**
	 * @param message
	 * @param throwable
	 */
	public ConcurrencyException(String message, Throwable throwable)
	{
		super(message, throwable);
		this.setCode(DEFAULT_ERROR_CODE);
	}

	/**
	 * @param throwable
	 */
	public ConcurrencyException(Throwable throwable)
	{
		super(throwable);
		this.setCode(DEFAULT_ERROR_CODE);
	}

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy