
nyla.solutions.core.exception.ConcurrencyException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of nyla.solutions.core Show documentation
Show all versions of nyla.solutions.core Show documentation
This Java API provides support for application utilities (application configuration, data encryption, debugger, text processing, and more).
/**
*
*/
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