ru.r2cloud.apt.ResourceDoesNotExistException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of apt-man Show documentation
Show all versions of apt-man Show documentation
Library for managing APT repository
The newest version!
package ru.r2cloud.apt;
public class ResourceDoesNotExistException extends Exception {
private static final long serialVersionUID = -8997629339000400780L;
public ResourceDoesNotExistException() {
// do nothing
}
public ResourceDoesNotExistException(Throwable e) {
super(e);
}
public ResourceDoesNotExistException(String message, Throwable e) {
super(message, e);
}
}