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

dev.soffa.foundation.error.TodoException Maven / Gradle / Ivy

There is a newer version: 0.17.31
Show newest version
package dev.soffa.foundation.error;

public class TodoException extends FunctionalException {

    private static final long serialVersionUID = 1L;

    public TodoException() {
        this("Not implementation yet");
    }

    public TodoException(String messsage, Object... args) {
        super(messsage, args);
    }

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

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy