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

ai.stapi.graphoperations.objectGraphMapper.model.specific.exceptions.CannotFixInterfaceObjectGraphMapping Maven / Gradle / Ivy

There is a newer version: 0.3.2
Show newest version
package ai.stapi.graphoperations.objectGraphMapper.model.specific.exceptions;

public class CannotFixInterfaceObjectGraphMapping extends RuntimeException {

  public CannotFixInterfaceObjectGraphMapping(String serializationType, Throwable cause) {
    super(
        String.format(
            "Cannot fix Interface OGM, because provided Object contains serializationType '%s'," +
                " which does not have Structure Schema.",
            serializationType
        ),
        cause
    );
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy