dev.youshallnotpass.inspection.InspectionException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of java-inspections Show documentation
Show all versions of java-inspections Show documentation
Java inspections library for youshallnotpass
The newest version!
package dev.youshallnotpass.inspection;
@SuppressWarnings("inheritancefree")
public final class InspectionException extends Exception {
public InspectionException(final String message) {
super(message);
}
public InspectionException(final String message, final Throwable cause) {
super(message, cause);
}
public InspectionException(final Throwable cause) {
super(cause);
}
}