![JAR search and dependency download from the Maven repository](/logo.png)
convex.core.exceptions.TODOException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of convex-core Show documentation
Show all versions of convex-core Show documentation
Convex core libraries and common utilities
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