de.bild.codec.InstanceCreationException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of polymorphia Show documentation
Show all versions of polymorphia Show documentation
A very fast POJO codec for MongoDB (used in conjunction with the Mongo Java Driver) that handles generic types as well as polymorphic class hierarchies
The newest version!
package de.bild.codec;
public class InstanceCreationException extends RuntimeException {
public InstanceCreationException(String message) {
super(message);
}
public InstanceCreationException(String message, Throwable cause) {
super(message, cause);
}
}