com.onloupe.model.exception.DirectoryNotFoundException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of model Show documentation
Show all versions of model Show documentation
Loupe model for common objects.
The newest version!
package com.onloupe.model.exception;
public class DirectoryNotFoundException extends GibraltarException {
private static final long serialVersionUID = 1L;
public DirectoryNotFoundException() {
// TODO Auto-generated constructor stub
}
public DirectoryNotFoundException(String message) {
super(message);
// TODO Auto-generated constructor stub
}
public DirectoryNotFoundException(String message, RuntimeException innerException) {
super(message, innerException);
// TODO Auto-generated constructor stub
}
public DirectoryNotFoundException(String message, Throwable cause) {
super(message, cause);
// TODO Auto-generated constructor stub
}
public DirectoryNotFoundException(Throwable cause) {
super(cause);
// TODO Auto-generated constructor stub
}
}