io.vproxy.base.util.exception.AlreadyExistException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of commons Show documentation
Show all versions of commons Show documentation
a commons library extracted from vproxy base module
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);
}
}