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

global.maplink.place.schema.exception.PlaceUpdateException Maven / Gradle / Ivy

There is a newer version: 1.5.15
Show newest version
package global.maplink.place.schema.exception;

import java.io.Serializable;

public class PlaceUpdateException extends RuntimeException implements Serializable {

    public static PlaceUpdateException of(final String field) {
        return new PlaceUpdateException(field);
    }

    private PlaceUpdateException(final String field) {
        super(String.format("%s: %s", ErrorType.PLACE_0007.getMessage(), field));
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy