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

io.github.dumijdev.dpxml.exception.UnParsebleException Maven / Gradle / Ivy

There is a newer version: 0.2.2
Show newest version
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);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy