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

ru.r2cloud.apt.ResourceDoesNotExistException Maven / Gradle / Ivy

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

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy