com.abubusoft.kripton.exception.NoSuchMapperException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of kripton-core Show documentation
Show all versions of kripton-core Show documentation
Kripton Persistence Library - core module
package com.abubusoft.kripton.exception;
import java.lang.reflect.Type;
public class NoSuchMapperException extends KriptonRuntimeException {
private static final long serialVersionUID = -2423802393630866667L;
public NoSuchMapperException(Type type) {
super("Class " + type.toString() + " could not be mapped. Is it marked with @BindType?");
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy