com.pretius.jddl.JddlCanNotDeserializeObjectException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jddl Show documentation
Show all versions of jddl Show documentation
Library for runtime-configured and runtime-evaluated dynamic json deserialization
The newest version!
package com.pretius.jddl;
public class JddlCanNotDeserializeObjectException extends RuntimeException {
private static final long serialVersionUID = 7577870568774690916L;
public JddlCanNotDeserializeObjectException() {
}
public JddlCanNotDeserializeObjectException(String message) {
super(message);
}
public JddlCanNotDeserializeObjectException(Throwable cause) {
super(cause);
}
public JddlCanNotDeserializeObjectException(String message, Throwable cause) {
super(message, cause);
}
public JddlCanNotDeserializeObjectException(String message, Throwable cause, boolean enableSuppression,
boolean writableStackTrace)
{
super(message, cause, enableSuppression, writableStackTrace);
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy