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

nyla.solutions.global.exception.fault.RequiredFaultException Maven / Gradle / Ivy

Go to download

Nyla Solutions Global Java API provides support for basic application utilities (application configuration, data encryption, debugger and text processing).

The newest version!
package nyla.solutions.global.exception.fault;




/**
 * Security related error
 * @author Gregory Green
 *
 */
public class RequiredFaultException extends FaultException
{
	/**
	 * 
	 * @param functionName the function name
	 */
	public RequiredFaultException()
	{
		this.setCategory(FaultException.DEFAULT_ERROR_CATEGORY_NM);
		this.setCode("DF005");
		
	}// -----------------------------------------------
	/**
	 * 
	 * @param functionName the function name
	 */
	public RequiredFaultException(Exception exception)
	{
		super(exception);

		this.setCategory(FaultException.DEFAULT_ERROR_CATEGORY_NM);
		this.setCode("DF005");
		
	}// -----------------------------------------------

	/**
	 * 
	 * @param functionName the function name
	 */
	public RequiredFaultException(String message)
	{
		super(message);
		this.setCategory(FaultException.DEFAULT_ERROR_CATEGORY_NM);
		this.setCode("DF005");
	}// -----------------------------------------------
	/**
	 * 
	 */
	private static final long serialVersionUID = -3062061475584757100L;

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy