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

convex.core.exceptions.TODOException Maven / Gradle / Ivy

There is a newer version: 0.7.15
Show newest version
package convex.core.exceptions;

@SuppressWarnings("serial")
public class TODOException extends RuntimeException {

	public TODOException(String message) {
		super("TODO: "+message);
	}
	
	public TODOException() {
		this("TODO");
	}

	public TODOException(Exception e) {
		super("TODO: "+e.getMessage(),e);
	}

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy