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

io.vproxy.base.util.exception.AlreadyExistException Maven / Gradle / Ivy

There is a newer version: 1.4.0
Show newest version
package io.vproxy.base.util.exception;

public class AlreadyExistException extends Exception {
    public AlreadyExistException(String resourceType, String name) {
        this("Duplicated entry for " + resourceType + " with " + name + ".");
    }

    public AlreadyExistException(String msg) {
        super(msg);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy