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

io.soffa.foundation.errors.TodoException Maven / Gradle / Ivy

There is a newer version: 2.0.2
Show newest version
package io.soffa.foundation.errors;

public class TodoException extends FunctionalException {

    private static final long serialVersionUID = 1L;

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

    public TodoException(String messsage) {
        super(messsage);
    }

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

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy