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

com.github.jasonmfehr.tojs.exception.FileSystemLocationNotFound Maven / Gradle / Ivy

package com.github.jasonmfehr.tojs.exception;

public class FileSystemLocationNotFound extends AbstractParameterizedException {

	private static final long serialVersionUID = 758652950402937419L;
	private static final String MESSAGE = "The specified location " + AbstractParameterizedException.PARAMETER_PLACEHOLDER + " does not exist on the file system";
	
	public FileSystemLocationNotFound(final String location) {
		super(location);
	}
	
	@Override
	protected String getExceptionMessage() {
		return MESSAGE;
	}
	
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy