com.groupbyinc.common.util.exception.GroupByUtilException Maven / Gradle / Ivy
package com.groupbyinc.common.util.exception;
public class GroupByUtilException extends RuntimeException {
public GroupByUtilException(Throwable throwable) {
super(throwable);
}
public GroupByUtilException(String message) {
super(message);
}
public GroupByUtilException(String message, Throwable throwable) {
super(message, throwable);
}
}