InvalidSemverFormat.java

package se.jobtechdev.personaldatagateway.api.exception;

public class InvalidSemverFormat extends RuntimeException {
  public InvalidSemverFormat(String invalidSemver) {
    super("Invalid SemVer string: " + invalidSemver);
  }
}