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

ai.stapi.graphoperations.graphReader.mappingPartReadResolvers.exception.AttributeMappingPartResolverException Maven / Gradle / Ivy

There is a newer version: 0.3.2
Show newest version
package ai.stapi.graphoperations.graphReader.mappingPartReadResolvers.exception;

import ai.stapi.graph.attribute.Attribute;

public class AttributeMappingPartResolverException extends RuntimeException {

  private AttributeMappingPartResolverException(String message) {
    super(message);
  }

  public static AttributeMappingPartResolverException becauseFoundAttributeTypeIsNotSupported(
      Attribute attribute,
      String dataType
  ) {
    return new AttributeMappingPartResolverException(
        "Found attribute '"
            + attribute.getName()
            + "' of type '"
            + dataType
            + "' is not supported by this resolver."
    );
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy