SDPepe/AppArt

View on GitHub
app/src/main/java/ch/epfl/sdp/appart/place/PlaceServiceException.java

Summary

Maintainability
A
0 mins
Test Coverage
A
100%
package ch.epfl.sdp.appart.place;

/**
 * This exception should be raised when an internal error of the PlaceService happens.
 */
public class PlaceServiceException extends RuntimeException {
    public PlaceServiceException(String message) {
        super(message);
    }
}