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

com.dooapp.gaedo.properties.PropertyProviderException Maven / Gradle / Ivy

package com.dooapp.gaedo.properties;

import com.dooapp.gaedo.CrudServiceException;

/**
 * Base exception class for property providers.
 * @author ndx
 *
 */
public abstract class PropertyProviderException extends CrudServiceException {

	/**
	 * 
	 */
	private static final long serialVersionUID = 1L;

	public PropertyProviderException() {
	}

	public PropertyProviderException(String message) {
		super(message);
	}

	public PropertyProviderException(Throwable cause) {
		super(cause);
	}

	public PropertyProviderException(String message, Throwable cause) {
		super(message, cause);
	}

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy