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

de.malkusch.telgrambot.Command Maven / Gradle / Ivy

There is a newer version: 0.0.23
Show newest version
package de.malkusch.telgrambot;

import static java.util.Objects.requireNonNull;

public record Command(String name) {

    public Command {
        requireNonNull(name);
        if (name.isBlank()) {
            throw new IllegalArgumentException("Command must not be empty");
        }
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy