io.github.dumijdev.dpxml.exception.UnParsebleException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of dp-xml Show documentation
Show all versions of dp-xml Show documentation
A Java lib to convert xml to POJO and POJO to xml
package io.github.dumijdev.dpxml.exception;
public class UnParsebleException extends RuntimeException{
public UnParsebleException() {
}
public UnParsebleException(String message) {
super(message);
}
public UnParsebleException(String message, Throwable cause) {
super(message, cause);
}
public UnParsebleException(Throwable cause) {
super(cause);
}
}