SDPepe/AppArt

View on GitHub
app/src/main/java/ch/epfl/sdp/appart/location/place/address/MalformedAddressException.java

Summary

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

/**
 * This exception is used in the AddressFactory and should be raised
 * when the address format does not fulfills our constraints.
 */
public class MalformedAddressException extends RuntimeException {
    protected MalformedAddressException(String message) {
        super(message);
    }
}