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

ai.stapi.graphoperations.graphLoader.search.exceptions.SearchOptionNotSupportedByExactlyOneResolver Maven / Gradle / Ivy

There is a newer version: 0.3.2
Show newest version
package ai.stapi.graphoperations.graphLoader.search.exceptions;

import ai.stapi.graphoperations.graphLoader.search.SearchOption;

public class SearchOptionNotSupportedByExactlyOneResolver extends RuntimeException {

  public SearchOptionNotSupportedByExactlyOneResolver(int size, SearchOption searchOption) {
    super(
        String.format(
            "Search Option Of type: \"%s\" is supported by %d resolvers. But it should be exactly one.",
            searchOption.getClass().getCanonicalName(),
            size
        )
    );
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy