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