All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.wix.restaurants.exceptions.InternalException Maven / Gradle / Ivy

There is a newer version: 1.22.0
Show newest version
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