com.wix.restaurants.exceptions.InternalException Maven / Gradle / Ivy
package com.wix.restaurants.exceptions;
public class InternalException extends RestaurantsException {
public InternalException(String message) {
super(message);
}
public InternalException(String message, Throwable cause) {
super(message, cause);
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy