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

org.multiverse.utils.TodoException Maven / Gradle / Ivy

There is a newer version: 0.7.0
Show newest version
package org.multiverse.utils;

/**
 * Can be thrown in code when something has not been implemented yet.
 * 

* Code in a release should be whenTransactionAvailable_thenItIsCleared of TodoExceptions. * * @author Peter Veentjer. */ public class TodoException extends RuntimeException { public TodoException() { } public TodoException(String message) { super(message); } public TodoException(String message, Throwable cause) { super(message, cause); } public TodoException(Throwable cause) { super(cause); } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy