com.github.debugthug.exceptions.HoldInventoryException Maven / Gradle / Ivy
package com.github.debugthug.exceptions;
public class HoldInventoryException extends Exception{
/**
*
*/
private static final long serialVersionUID = 4686147786120984674L;
public HoldInventoryException(String message, Throwable cause) {
super(message, cause);
}
public HoldInventoryException(String message) {
super(message);
}
public HoldInventoryException(Throwable cause) {
super(cause);
}
}