com.buger.patcher.exception.PatchException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of object-patcher Show documentation
Show all versions of object-patcher Show documentation
Java Object Patcher is simple,
dependency-free and fast library
which makes patching/merging objects simple.
The newest version!
package com.buger.patcher.exception;
/**
* @author Created by Buheria Oleksii {@literal [email protected]}
* @version 1.0
* @since 28-09-2020
*/
public class PatchException extends Exception {
public PatchException() {
super();
}
public PatchException(String message) {
super(message);
}
public PatchException(String message, Throwable cause) {
super(message, cause);
}
public PatchException(Throwable cause) {
super(cause);
}
}