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

com.softicar.platform.common.core.exceptions.SofticarNotImplementedYetException Maven / Gradle / Ivy

Go to download

The SoftiCAR Platform is a lightweight, Java-based library to create interactive business web applications.

There is a newer version: 50.0.0
Show newest version
package com.softicar.platform.common.core.exceptions;

/**
 * Throw this exception if a functionality is not implemented, yet.
 * 
 * @author Oliver Richers
 */
public class SofticarNotImplementedYetException extends SofticarException {

	private static final long serialVersionUID = 1L;

	public SofticarNotImplementedYetException() {

		super();
	}

	public SofticarNotImplementedYetException(Exception cause) {

		super(cause);
	}

	public SofticarNotImplementedYetException(String text, Object...args) {

		super(text, args);
	}

	public SofticarNotImplementedYetException(Exception cause, String text, Object...args) {

		super(cause, text, args);
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy