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

io.robe.admin.util.ExceptionMessages Maven / Gradle / Ivy

There is a newer version: 0.5.0.0-1039
Show newest version
package io.robe.admin.util;

public enum ExceptionMessages {
    CANT_BE_NULL(" cannot be null."),
    NOT_EXISTS(" not exists.");


    private final String msg;

    private ExceptionMessages(String msg) {
        this.msg = msg;
    }

    @Override
    public String toString() {
        return msg;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy