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

com.github.fashionbrot.function.ThrowMsgFunction Maven / Gradle / Ivy

The newest version!
package com.github.fashionbrot.function;



@FunctionalInterface
public interface ThrowMsgFunction {

    void throwMsg(int code, String msg);

    default void throwMsg(String message) {
        throwMsg(1, message);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy